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