diff --git a/cmd/new.go b/cmd/new.go index fa8c95f..cab4471 100644 --- a/cmd/new.go +++ b/cmd/new.go @@ -6,7 +6,7 @@ import ( "github.com/fatih/color" "github.com/spf13/cobra" - "password-generator/passGen" + "github.com/rjNemo/go-pass-gen/passGen" ) func init() { diff --git a/go.mod b/go.mod index adfd1cd..f5fe70d 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module password-generator +module github.com/rjNemo/go-pass-gen go 1.17 diff --git a/main.go b/main.go index 8c0f808..701b512 100644 --- a/main.go +++ b/main.go @@ -1,6 +1,6 @@ package main -import "password-generator/cmd" +import "github.com/rjNemo/go-pass-gen/cmd" func main() { cmd.Execute() diff --git a/passGen/passGen_test.go b/passGen/passGen_test.go index b99faf9..7a20feb 100644 --- a/passGen/passGen_test.go +++ b/passGen/passGen_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "password-generator/passGen" + "github.com/rjNemo/go-pass-gen/passGen" ) func TestGeneratePasswordWithGivenCharacterNumber(t *testing.T) {