mirror of
https://github.com/schollz/croc.git
synced 2024-11-23 15:44:16 +03:00
21 lines
423 B
Go
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/v6/src/cli"
|
|
)
|
|
|
|
func main() {
|
|
// "github.com/pkg/profile"
|
|
// defer profile.Start(profile.CPUProfile).Stop()
|
|
if err := cli.Run(); err != nil {
|
|
fmt.Println(err)
|
|
}
|
|
}
|