photoprism/internal/config/thumbnails.go
François d'Yvoire 55693fab35
Some more comment improvements (#257)
* Improve comment in classify package

* improve comment in config package

* improve entity package comments

* grammar error in comments
2020-02-21 01:14:45 +01:00

12 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