1
0
mirror of https://github.com/schollz/croc.git synced 2024-11-23 23:54:17 +03:00
croc/main.go

12 lines
142 B
Go
Raw Normal View History

2018-06-28 16:38:07 +03:00
package main
import croc "github.com/schollz/croc/src"
func main() {
2018-06-28 18:05:31 +03:00
c := croc.Init()
err := c.Relay()
2018-06-28 16:38:07 +03:00
if err != nil {
panic(err)
}
}