diff --git a/cmd/spoof-dpi/main.go b/cmd/spoof-dpi/main.go index e24afc8..22329f2 100644 --- a/cmd/spoof-dpi/main.go +++ b/cmd/spoof-dpi/main.go @@ -1,9 +1,12 @@ package main import ( + "fmt" + "github.com/itworksnow/SpoofDPI/hello" ) func main() { - hello.Hello() + fmt.Print("hello") + hello.SayHello() }