This commit is contained in:
itworksnow 2021-12-28 15:10:06 +09:00
parent 67549f8c21
commit 7f0502de6a

View File

@ -1,9 +1,12 @@
package main
import (
"fmt"
"github.com/itworksnow/SpoofDPI/hello"
)
func main() {
hello.Hello()
fmt.Print("hello")
hello.SayHello()
}