govote/cmd/main.go
2024-05-14 10:27:13 +02:00

19 lines
254 B
Go

// cmd implements the CLI using urfav/cli.
package cmd
import (
"github.com/urfave/cli/v2"
)
var App = cli.App{
Name: "govote",
Usage: "🌈 Referendums and consensus.",
Commands: []*cli.Command{
newCmd,
showCmd,
voteCmd,
serveCmd,
},
}