isle/go/cmd/entrypoint/storage.go

12 lines
228 B
Go
Raw Normal View History

2024-11-14 19:55:15 +00:00
package main
var subCmdStorage = subCmd{
name: "storage",
descr: "Sub-commands related to configuration of storage on this host",
2024-11-14 19:55:15 +00:00
do: func(ctx subCmdCtx) error {
return ctx.doSubCmd(
subCmdStorageAllocation,
2024-11-14 19:55:15 +00:00
)
},
}