photoprism/internal/thumb/generator.go
Michael Mayer c909c0bd5a CI: Apply Go linter recommendations to "thumb" package #5330
Signed-off-by: Michael Mayer <michael@photoprism.app>
2025-11-22 11:55:19 +01:00

11 lines
211 B
Go

package thumb
// Lib identifies the image processing backend.
type Lib = string
// Supported image processing libraries.
const (
LibAuto Lib = "auto"
LibVips Lib = "vips"
LibImaging Lib = "imaging"
)