mirror of
https://github.com/zrepl/zrepl.git
synced 2024-11-22 16:34:32 +01:00
15 lines
390 B
Go
15 lines
390 B
Go
|
package client
|
||
|
|
||
|
import "github.com/zrepl/zrepl/cli"
|
||
|
|
||
|
var zabsCmdCreate = &cli.Subcommand{
|
||
|
Use: "create",
|
||
|
NoRequireConfig: true,
|
||
|
Short: `create zrepl ZFS abstractions (mostly useful for debugging & development, users should not need to use this command)`,
|
||
|
SetupSubcommands: func() []*cli.Subcommand {
|
||
|
return []*cli.Subcommand{
|
||
|
zabsCmdCreateStepHold,
|
||
|
}
|
||
|
},
|
||
|
}
|