fix: module

This commit is contained in:
Ruidy Nemausat 2021-10-20 14:00:12 +02:00
parent c98c1e7a71
commit 58913e6c87
No known key found for this signature in database
GPG key ID: A367830814E7096E
4 changed files with 4 additions and 4 deletions

View file

@ -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() {

2
go.mod
View file

@ -1,4 +1,4 @@
module password-generator
module github.com/rjNemo/go-pass-gen
go 1.17

View file

@ -1,6 +1,6 @@
package main
import "password-generator/cmd"
import "github.com/rjNemo/go-pass-gen/cmd"
func main() {
cmd.Execute()

View file

@ -5,7 +5,7 @@ import (
"strings"
"testing"
"password-generator/passGen"
"github.com/rjNemo/go-pass-gen/passGen"
)
func TestGeneratePasswordWithGivenCharacterNumber(t *testing.T) {