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 package main
import ( import (
"fmt"
"github.com/itworksnow/SpoofDPI/hello" "github.com/itworksnow/SpoofDPI/hello"
) )
func main() { func main() {
hello.Hello() fmt.Print("hello")
hello.SayHello()
} }