// Copyright 2018 Felix Kronlage 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 { config(Checker.ConfigFile) fmt.Println("storages") return nil }