diff --git a/cmd/test/main.go b/cmd/test/main.go index 958cca3..f344a40 100644 --- a/cmd/test/main.go +++ b/cmd/test/main.go @@ -1,7 +1,7 @@ package main import ( - "github.com/omnipunk/cli/mtool" + "github.com/di4f/cli/mtool" "strconv" "fmt" "os" @@ -35,7 +35,7 @@ var ( }).Desc( "first sub tool", ), - mtool.T("second").Func(func(flags *mtool.Flags){ + mtool.T("second").Func(func(flags *mtool.Flags) { fmt.Println("called the second", flags.Parse()) }).Desc( "second sub tool", @@ -46,7 +46,7 @@ var ( ).Desc( "the testing program to show how to use the lib", ).Ldesc( - "this is the long description where you "+ + "this is the long description where you " + "can put anything you want about the program", ) ) diff --git a/go.mod b/go.mod index 9c0ded0..d03c918 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/omnipunk/cli +module github.com/di4f/cli go 1.18