Skip to content

Commit

Permalink
Update mod for pkg.go.dev
Browse files Browse the repository at this point in the history
  • Loading branch information
Mobilpadde committed Jan 11, 2023
1 parent 80ed1c0 commit 59fe4ac
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module moths
module github.com/Mobilpadde/moths

go 1.19

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"os"
"time"

"moths/moths"
"moths/moths/emojies"
"github.com/Mobilpadde/moths/moths"
"github.com/Mobilpadde/moths/moths/emojies"
)

func main() {
Expand Down
4 changes: 2 additions & 2 deletions moths/checks/checks.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package checks
import (
"time"

"moths/moths/emojies"
"moths/moths/errs"
"github.com/Mobilpadde/moths/moths/emojies"
"github.com/Mobilpadde/moths/moths/errs"
)

func CheckSecret(secret string) error {
Expand Down
2 changes: 1 addition & 1 deletion moths/new.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package moths
import (
"time"

"moths/moths/checks"
"github.com/Mobilpadde/moths/moths/checks"
)

func NewMoths(opts ...option) (*Moths, error) {
Expand Down
2 changes: 1 addition & 1 deletion moths/next.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"fmt"
"time"

"moths/moths/otp"
"github.com/Mobilpadde/moths/moths/otp"
)

func (m *Moths) Next() (otp.OTP, error) {
Expand Down
4 changes: 2 additions & 2 deletions moths/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"strings"
"time"

"moths/moths/checks"
"moths/moths/emojies"
"github.com/Mobilpadde/moths/moths/checks"
"github.com/Mobilpadde/moths/moths/emojies"
)

type Moths struct {
Expand Down
2 changes: 1 addition & 1 deletion moths/otp/config.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package otp

import (
"moths/moths/emojies"
"github.com/Mobilpadde/moths/moths/emojies"
)

type OTP struct {
Expand Down
2 changes: 1 addition & 1 deletion moths/otp/otp.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"math/bits"
"strings"

"moths/moths/emojies"
"github.com/Mobilpadde/moths/moths/emojies"
)

const EmojiBytes = 4
Expand Down
2 changes: 1 addition & 1 deletion moths/validate.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package moths
import (
"time"

"moths/moths/otp"
"github.com/Mobilpadde/moths/moths/otp"
)

func (m *Moths) Validate(moth string) bool {
Expand Down

0 comments on commit 59fe4ac

Please sign in to comment.