2019-05-14 16:04:17 +02:00
|
|
|
package config
|
|
|
|
|
2020-02-21 01:14:45 +01:00
|
|
|
// Thumbnail gives direct access to width and height for a thumbnail setting
|
2019-05-14 16:04:17 +02:00
|
|
|
type Thumbnail struct {
|
2020-07-13 15:23:54 +02:00
|
|
|
Size string `json:"size"`
|
|
|
|
Use string `json:"use"`
|
|
|
|
Width int `json:"w"`
|
|
|
|
Height int `json:"h"`
|
2019-05-14 16:04:17 +02:00
|
|
|
}
|
|
|
|
|
2020-02-21 01:14:45 +01:00
|
|
|
// Thumbnails is a list of default thumbnail size available for the app
|
2019-05-14 16:04:17 +02:00
|
|
|
var Thumbnails []Thumbnail
|