1
0
mirror of https://github.com/celogeek/piwigo-cli.git synced 2025-06-22 14:49:55 +02:00
2021-12-16 11:49:16 +01:00

13 lines
366 B
Go

package piwigocli
type SessionGroup struct {
Login SessionLoginCommand `command:"login" description:"Initialize a connection to a piwigo instance"`
Status SessionStatusCommand `command:"status" description:"Get the status of your session"`
}
var sessionGroup SessionGroup
func init() {
parser.AddCommand("session", "Session management", "", &sessionGroup)
}