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

add crypto, utils

This commit is contained in:
Zack Scholl 2018-06-28 08:05:31 -07:00
parent ce8135002c
commit 7656b102c7
9 changed files with 645 additions and 1 deletions

View file

@ -3,7 +3,8 @@ package main
import croc "github.com/schollz/croc/src"
func main() {
err := croc.Relay([]string{"27001", "27002", "27003", "27004"}, "8002")
c := croc.Init()
err := c.Relay()
if err != nil {
panic(err)
}