2021-12-17 09:55:20 +01:00

12 lines
247 B
Go

package piwigocli
type ImagesGroup struct {
Details ImagesDetailsCommand `command:"details" description:"Details of the images"`
}
var imagesGroup ImagesGroup
func init() {
parser.AddCommand("images", "Images management", "", &imagesGroup)
}