diff --git a/Readme.md b/Readme.md deleted file mode 100644 index c5092f9..0000000 --- a/Readme.md +++ /dev/null @@ -1,7 +0,0 @@ -# SpoofDPI - -## build -`go build ./...` - -## install -`go install github.com/jerry901/SpoofDPI/cmd/spoof-dpi` diff --git a/go.mod b/go.mod index a8705e0..a4497b5 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module github.com/itworksnow/SpoofDPI +module SpoofDPI go 1.17 diff --git a/hello/hello.go b/hello/hello.go index 58ba3a0..dce853e 100644 --- a/hello/hello.go +++ b/hello/hello.go @@ -4,6 +4,6 @@ import ( "fmt" ) -func Hello() { - fmt.Print("Hello TEST") +func SayHello() { + fmt.Print("from module hello: Hello") }