55693fab35
* Improve comment in classify package * improve comment in config package * improve entity package comments * grammar error in comments
11 lines
258 B
Go
11 lines
258 B
Go
package config
|
|
|
|
// Thumbnail gives direct access to width and height for a thumbnail setting
|
|
type Thumbnail struct {
|
|
Name string
|
|
Width int
|
|
Height int
|
|
}
|
|
|
|
// Thumbnails is a list of default thumbnail size available for the app
|
|
var Thumbnails []Thumbnail
|