1
1
Fork 0
mirror of https://github.com/schollz/croc.git synced 2025-10-11 05:11:06 +02:00

first attempt

This commit is contained in:
Zack Scholl 2018-06-28 06:38:07 -07:00
parent 84f732b662
commit 5ede3186e5
5 changed files with 318 additions and 120 deletions

10
main.go Normal file
View file

@ -0,0 +1,10 @@
package main
import croc "github.com/schollz/croc/src"
func main() {
err := croc.RunRelay("8002")
if err != nil {
panic(err)
}
}