mirror of
https://github.com/rjNemo/go-pass-gen
synced 2026-06-12 13:46:49 +00:00
fix: module
This commit is contained in:
parent
c98c1e7a71
commit
58913e6c87
4 changed files with 4 additions and 4 deletions
|
|
@ -6,7 +6,7 @@ import (
|
||||||
"github.com/fatih/color"
|
"github.com/fatih/color"
|
||||||
"github.com/spf13/cobra"
|
"github.com/spf13/cobra"
|
||||||
|
|
||||||
"password-generator/passGen"
|
"github.com/rjNemo/go-pass-gen/passGen"
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
|
|
||||||
2
go.mod
2
go.mod
|
|
@ -1,4 +1,4 @@
|
||||||
module password-generator
|
module github.com/rjNemo/go-pass-gen
|
||||||
|
|
||||||
go 1.17
|
go 1.17
|
||||||
|
|
||||||
|
|
|
||||||
2
main.go
2
main.go
|
|
@ -1,6 +1,6 @@
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import "password-generator/cmd"
|
import "github.com/rjNemo/go-pass-gen/cmd"
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
cmd.Execute()
|
cmd.Execute()
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,7 @@ import (
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"password-generator/passGen"
|
"github.com/rjNemo/go-pass-gen/passGen"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestGeneratePasswordWithGivenCharacterNumber(t *testing.T) {
|
func TestGeneratePasswordWithGivenCharacterNumber(t *testing.T) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue