mirror of
https://github.com/xvzc/SpoofDPI.git
synced 2025-01-09 10:11:26 +00:00
13 lines
134 B
Go
13 lines
134 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/itworksnow/SpoofDPI/hello"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Print("hello")
|
|
hello.SayHello()
|
|
}
|