mirror of
https://github.com/celogeek/piwigo-cli.git
synced 2025-05-25 02:02:37 +02:00
10 lines
172 B
Go
10 lines
172 B
Go
package piwigo
|
|
|
|
type Derivatives map[string]Derivative
|
|
|
|
type Derivative struct {
|
|
Height int `json:"height"`
|
|
Width int `json:"width"`
|
|
Url string `json:"url"`
|
|
}
|