1
1
Fork 0
mirror of https://github.com/schollz/croc.git synced 2025-10-11 05:11:06 +02:00
schollz_croc/main.go
2019-11-11 11:26:32 -08:00

20 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/v6/src/cli"
)
func main() {
// "github.com/pkg/profile"
// defer profile.Start(profile.CPUProfile).Stop()
if err := cli.Run(); err != nil {
fmt.Println(err)
}
}