mirror of
https://github.com/xvzc/SpoofDPI.git
synced 2025-01-19 09:12:19 +00:00
update
This commit is contained in:
parent
72af9ed7ad
commit
729f8d9e49
7
Readmd.md
Normal file
7
Readmd.md
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# SpoofDPI
|
||||||
|
|
||||||
|
## build
|
||||||
|
`go build ./...`
|
||||||
|
|
||||||
|
## install
|
||||||
|
`go install github.com/jerry901/SpoofDPI/cmd/spoof-dpi`
|
@ -2,8 +2,10 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/jerry901/SpoofDPI/hello"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
fmt.Println("Hello, world!")
|
fmt.Println("Hello, world!")
|
||||||
|
hello.hello()
|
||||||
}
|
}
|
||||||
|
11
hello/hello.go
Normal file
11
hello/hello.go
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
package hello
|
||||||
|
|
||||||
|
|
||||||
|
import (
|
||||||
|
"fmt"
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
|
func hello() {
|
||||||
|
fmt.Print("hello")
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user