package main import ( "os" "code.oliverdavies.uk/opdavies/cmd-zet/internal/cli" ) func main() { if err := cli.Execute(); err != nil { os.Exit(1) } }