SpoofDPI/cmd/spoof-dpi/main.go

10 lines
103 B
Go
Raw Normal View History

2021-12-28 02:28:43 +00:00
package main
import (
2021-12-28 05:10:21 +00:00
"github.com/itworksnow/SpoofDPI/hello"
2021-12-28 02:28:43 +00:00
)
func main() {
2021-12-28 05:13:20 +00:00
hello.Hello()
2021-12-28 02:28:43 +00:00
}