2021-12-18 22:57:46 +01:00

13 lines
335 B
Go

package piwigocli
type MethodGroup struct {
List MethodListCommand `command:"list" description:"List of available methods"`
Details MethodDetailsCommand `command:"details" description:"Details of a method"`
}
var methodGroup MethodGroup
func init() {
parser.AddCommand("method", "Reflexion management", "", &methodGroup)
}