12 lines
228 B
Go
12 lines
228 B
Go
package main
|
|
|
|
var subCmdStorage = subCmd{
|
|
name: "storage",
|
|
descr: "Sub-commands related to configuration of storage on this host",
|
|
do: func(ctx subCmdCtx) error {
|
|
return ctx.doSubCmd(
|
|
subCmdStorageAllocation,
|
|
)
|
|
},
|
|
}
|