SpoofDPI/cmd/spoof-dpi/main.go
itworksnow 7f0502de6a update
2021-12-28 15:10:06 +09:00

13 lines
134 B
Go

package main
import (
"fmt"
"github.com/itworksnow/SpoofDPI/hello"
)
func main() {
fmt.Print("hello")
hello.SayHello()
}