You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
420 B
Go
15 lines
420 B
Go
// Copyright 2018 Felix Kronlage <fkr@hazardous.org>
|
|
|
|
package main
|
|
|
|
type SnapshotsCommand struct {
|
|
Age SnapshotsAgeCommand `command:"age" description:"commands relating to the age of snapshots"`
|
|
Count SnapshotsCountCommand `command:"count" description:"commands relating to the amount of snapshots"`
|
|
}
|
|
|
|
var snapshotsCommand SnapshotsCommand
|
|
|
|
func (x *SnapshotsCommand) Execute(args []string) error {
|
|
return nil
|
|
}
|