package app import ( "github.com/urfave/cli/v3" ) const ( AppName = "rafta" AppUsage = "Really, Another Freaking Todo App?!" ) var version = "COMPILED" func Command() *cli.Command { return &cli.Command{ Name: AppName, Usage: AppUsage, Authors: []any{"Benjamin Chausse "}, Version: version, Flags: flags(), Action: action, } }