mirror of
https://github.com/celogeek/piwigo-cli.git
synced 2025-05-25 18:22:37 +02:00
13 lines
352 B
Go
13 lines
352 B
Go
package piwigocli
|
|
|
|
type SessionGroup struct {
|
|
Login LoginCommand `command:"login" description:"Initialize a connection to a piwigo instance"`
|
|
Status StatusCommand `command:"status" description:"Get the status of your session"`
|
|
}
|
|
|
|
var sessionGroup SessionGroup
|
|
|
|
func init() {
|
|
parser.AddCommand("session", "Session management", "", &sessionGroup)
|
|
}
|