9 lines
176 B
Go
9 lines
176 B
Go
|
|
package setup
|
||
|
|
|
||
|
|
import "github.com/leaanthony/clir"
|
||
|
|
|
||
|
|
// AddCommands registers the 'setup' command and all subcommands.
|
||
|
|
func AddCommands(app *clir.Cli) {
|
||
|
|
AddSetupCommand(app)
|
||
|
|
}
|