mirror of
https://github.com/celogeek/piwigo-cli.git
synced 2025-05-25 10:12:37 +02:00
13 lines
394 B
Go
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)
|
|
}
|