2021-12-19 00:03:09 +01:00

14 lines
409 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"`
Try MethodTryCommand `command:"try" description:"Test a method"`
}
var methodGroup MethodGroup
func init() {
parser.AddCommand("method", "Reflexion management", "", &methodGroup)
}