Skip to content

Commit 59fe4ac

Browse files
committed
Update mod for pkg.go.dev
1 parent 80ed1c0 commit 59fe4ac

9 files changed

Lines changed: 12 additions & 12 deletions

File tree

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module moths
1+
module github.com/Mobilpadde/moths
22

33
go 1.19
44

main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"os"
66
"time"
77

8-
"moths/moths"
9-
"moths/moths/emojies"
8+
"github.com/Mobilpadde/moths/moths"
9+
"github.com/Mobilpadde/moths/moths/emojies"
1010
)
1111

1212
func main() {

moths/checks/checks.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package checks
33
import (
44
"time"
55

6-
"moths/moths/emojies"
7-
"moths/moths/errs"
6+
"github.com/Mobilpadde/moths/moths/emojies"
7+
"github.com/Mobilpadde/moths/moths/errs"
88
)
99

1010
func CheckSecret(secret string) error {

moths/new.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package moths
33
import (
44
"time"
55

6-
"moths/moths/checks"
6+
"github.com/Mobilpadde/moths/moths/checks"
77
)
88

99
func NewMoths(opts ...option) (*Moths, error) {

moths/next.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"fmt"
99
"time"
1010

11-
"moths/moths/otp"
11+
"github.com/Mobilpadde/moths/moths/otp"
1212
)
1313

1414
func (m *Moths) Next() (otp.OTP, error) {

moths/options.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ import (
55
"strings"
66
"time"
77

8-
"moths/moths/checks"
9-
"moths/moths/emojies"
8+
"github.com/Mobilpadde/moths/moths/checks"
9+
"github.com/Mobilpadde/moths/moths/emojies"
1010
)
1111

1212
type Moths struct {

moths/otp/config.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package otp
22

33
import (
4-
"moths/moths/emojies"
4+
"github.com/Mobilpadde/moths/moths/emojies"
55
)
66

77
type OTP struct {

moths/otp/otp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"math/bits"
66
"strings"
77

8-
"moths/moths/emojies"
8+
"github.com/Mobilpadde/moths/moths/emojies"
99
)
1010

1111
const EmojiBytes = 4

moths/validate.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package moths
33
import (
44
"time"
55

6-
"moths/moths/otp"
6+
"github.com/Mobilpadde/moths/moths/otp"
77
)
88

99
func (m *Moths) Validate(moth string) bool {

0 commit comments

Comments
 (0)