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.
20 lines
370 B
Go
20 lines
370 B
Go
// Copyright 2018 Felix Kronlage <fkr@hazardous.org>
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
type StoragesCommand struct {
|
|
//Age struct {} `command:"age"`
|
|
List StorageListCommand `command:"list" description:"list the available storages"`
|
|
}
|
|
|
|
var storagesCommand StoragesCommand
|
|
|
|
func (x *StoragesCommand) Execute(args []string) error {
|
|
fmt.Println("storages")
|
|
return nil
|
|
}
|