mirror of
https://github.com/celogeek/piwigo-cli.git
synced 2025-05-25 18:22:37 +02:00
16 lines
312 B
Go
16 lines
312 B
Go
package piwigo
|
|
|
|
import "net/http"
|
|
|
|
type Piwigo struct {
|
|
Url string `json:"url"`
|
|
Token *http.Cookie `json:"token"`
|
|
}
|
|
|
|
type PiwigoResult struct {
|
|
Stat string `json:"stat"`
|
|
Err int `json:"err"`
|
|
ErrMessage string `json:"message"`
|
|
Result interface{} `json:"result"`
|
|
}
|