This commit is contained in:
wasd
2018-09-25 14:13:45 +08:00
commit 3b4d8613fa
14 changed files with 2171 additions and 0 deletions

10
main.go Normal file
View File

@@ -0,0 +1,10 @@
package main
import (
"github.com/40t/go-sniffer/core"
)
func main() {
core := core.New()
core.Run()
}