This commit is contained in:
jerry901 2021-12-28 12:15:54 +09:00
parent 72af9ed7ad
commit 729f8d9e49
5 changed files with 23 additions and 0 deletions

7
Readmd.md Normal file
View File

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

View File

@ -2,8 +2,10 @@ package main
import (
"fmt"
"github.com/jerry901/SpoofDPI/hello"
)
func main() {
fmt.Println("Hello, world!")
hello.hello()
}

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module SpoofDPI
go 1.17

11
hello/hello.go Normal file
View File

@ -0,0 +1,11 @@
package hello
import (
"fmt"
)
func hello() {
fmt.Print("hello")
}

BIN
spoof-dpi Executable file

Binary file not shown.