mirror of
https://github.com/celogeek/piwigo-cli.git
synced 2025-05-25 18:22:37 +02:00
12 lines
246 B
Go
12 lines
246 B
Go
package piwigocli
|
|
|
|
type ImagesGroup struct {
|
|
Details ImagesDetailsCommand `command:"details" description:"Details of the images"`
|
|
}
|
|
|
|
var imagesGroup ImagesGroup
|
|
|
|
func init() {
|
|
parser.AddCommand("images", "Image management", "", &imagesGroup)
|
|
}
|