2021-12-16 11:49:16 +01:00

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)
}