This commit is contained in:
itworksnow 2021-12-28 15:10:29 +09:00
parent 7f0502de6a
commit d94a94de55
3 changed files with 3 additions and 10 deletions

View File

@ -1,7 +0,0 @@
# SpoofDPI
## build
`go build ./...`
## install
`go install github.com/jerry901/SpoofDPI/cmd/spoof-dpi`

2
go.mod
View File

@ -1,3 +1,3 @@
module github.com/itworksnow/SpoofDPI
module SpoofDPI
go 1.17

View File

@ -4,6 +4,6 @@ import (
"fmt"
)
func Hello() {
fmt.Print("Hello TEST")
func SayHello() {
fmt.Print("from module hello: Hello")
}