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