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

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"`
}