mirror of
https://github.com/schollz/croc.git
synced 2025-10-11 05:11:06 +02:00
14 lines
195 B
Go
14 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)
|
|
}
|
|
}
|