Files
stamp/cmd/stamp/main.go
T
2026-03-12 23:41:12 +01:00

32 lines
500 B
Go

package main
import (
"context"
"fmt"
"os"
"github.com/urfave/cli/v3"
)
func main() {
app := &cli.Command{
Name: "stamp",
Usage: "language-agnostic changesets-style versioning and changelog tool",
Version: "0.1.0",
Commands: []*cli.Command{
addCmd(),
statusCmd(),
versionCmd(),
publishCmd(),
commentCmd(),
previewCmd(),
releasePRCmd(),
},
}
if err := app.Run(context.Background(), os.Args); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(1)
}
}