govote/cmd/main.go
2024-05-13 00:47:24 +02:00

17 lines
221 B
Go

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