You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
majority-judgment-cli/main.go

15 lines
261 B

/**
* This is a standard Cobra CLI app.
* We don't really use subcommands for now, only the Root one.
*
* A good entrypoint is therefore cmd/root.go
*/
package main
import "github.com/MieuxVoter/majority-judgment-cli/cmd"
func main() {
cmd.Execute()
}