photoprism/pkg/media/types.go
Michael Mayer 97c9962053 Index: Add experimental EPS and SVG vector graphics support #1177 #2207
Signed-off-by: Michael Mayer <michael@photoprism.app>
2023-02-11 20:18:04 +01:00

15 lines
272 B
Go

package media
const (
Unknown Type = ""
Image Type = "image"
Raw Type = "raw"
Animated Type = "animated"
Live Type = "live"
Video Type = "video"
Vector Type = "vector"
Sidecar Type = "sidecar"
Text Type = "text"
Other Type = "other"
)