2021-12-26 13:55:48 +01:00

14 lines
448 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"`
UploadTree ImagesUploadTreeCommand `command:"upload-tree" description:"Upload of a directory of images"`
}
var imagesGroup ImagesGroup
func init() {
parser.AddCommand("images", "Images management", "", &imagesGroup)
}