govote/cmd/main.go

19 lines
254 B
Go
Raw Normal View History

2024-05-14 08:26:48 +00:00
// cmd implements the CLI using urfav/cli.
2024-05-12 22:47:24 +00:00
package cmd
import (
"github.com/urfave/cli/v2"
)
var App = cli.App{
2024-05-13 08:45:38 +00:00
Name: "govote",
2024-05-14 08:26:48 +00:00
Usage: "🌈 Referendums and consensus.",
2024-05-13 08:45:38 +00:00
Commands: []*cli.Command{
newCmd,
showCmd,
voteCmd,
serveCmd,
},
2024-05-12 22:47:24 +00:00
}