2021-12-18 15:05:24 +01:00

13 lines
394 B
Go

package piwigocli
type ReflexionGroup struct {
MethodList ReflexionMethodListCommand `command:"method-list" description:"List of available methods"`
MethodDetails ReflexionMethodDetailsCommand `command:"method-details" description:"Details of a method"`
}
var reflexionGroup ReflexionGroup
func init() {
parser.AddCommand("reflexion", "Reflexion management", "", &reflexionGroup)
}