mirror of
https://github.com/schollz/croc.git
synced 2024-11-23 23:54:17 +03:00
15 lines
195 B
Go
15 lines
195 B
Go
package main
|
|
//go:generate go run src/install/updateversion.go
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/schollz/croc/v6/src/cli"
|
|
)
|
|
|
|
func main() {
|
|
if err := cli.Run(); err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
}
|