SpoofDPI/cmd/spoof-dpi/main.go

12 lines
144 B
Go
Raw Normal View History

2021-12-28 02:28:43 +00:00
package main
import (
"fmt"
2021-12-28 03:15:54 +00:00
"github.com/jerry901/SpoofDPI/hello"
2021-12-28 02:28:43 +00:00
)
func main() {
fmt.Println("Hello, world!")
2021-12-28 03:15:54 +00:00
hello.hello()
2021-12-28 02:28:43 +00:00
}