mirror of
https://github.com/celogeek/piwigo-cli.git
synced 2025-05-25 18:22:37 +02:00
12 lines
260 B
Go
12 lines
260 B
Go
package piwigocli
|
|
|
|
type CategoriesGroup struct {
|
|
List CategoriesListCommand `command:"list" description:"List categories"`
|
|
}
|
|
|
|
var categoriesGroup CategoriesGroup
|
|
|
|
func init() {
|
|
parser.AddCommand("categories", "Categories management", "", &categoriesGroup)
|
|
}
|