1
0
mirror of https://github.com/schollz/croc.git synced 2024-11-23 15:44:16 +03:00
croc/main.go
2020-02-28 16:57:46 -08:00

21 lines
423 B
Go

package main
//go:generate git tag -af v$VERSION -m "v$VERSION"
//go:generate go run src/install/updateversion.go
//go:generate git commit -am "bump $VERSION"
//go:generate git tag -af v$VERSION -m "v$VERSION"
import (
"fmt"
"github.com/schollz/croc/v8/src/cli"
)
func main() {
// "github.com/pkg/profile"
// defer profile.Start(profile.CPUProfile).Stop()
if err := cli.Run(); err != nil {
fmt.Println(err)
}
}