1
0
mirror of https://github.com/schollz/croc.git synced 2024-12-11 06:35:01 +03:00
croc/main.go

15 lines
195 B
Go
Raw Normal View History

2018-06-28 16:38:07 +03:00
package main
//go:generate go run src/install/updateversion.go
2018-06-28 16:38:07 +03:00
2018-10-17 16:39:02 +03:00
import (
2019-04-30 02:09:37 +03:00
"fmt"
2018-06-30 19:47:27 +03:00
2019-04-30 02:12:04 +03:00
"github.com/schollz/croc/v6/src/cli"
2019-04-30 02:09:37 +03:00
)
2018-06-30 19:47:27 +03:00
2018-09-22 06:51:43 +03:00
func main() {
2019-04-30 02:09:37 +03:00
if err := cli.Run(); err != nil {
fmt.Println(err)
}
2018-09-22 08:25:01 +03:00
}