2022-04-15 09:42:07 +02:00
|
|
|
package media
|
|
|
|
|
|
|
|
const (
|
|
|
|
Unknown Type = ""
|
|
|
|
Image Type = "image"
|
|
|
|
Raw Type = "raw"
|
|
|
|
Animated Type = "animated"
|
|
|
|
Live Type = "live"
|
|
|
|
Video Type = "video"
|
2023-02-11 20:18:04 +01:00
|
|
|
Vector Type = "vector"
|
2022-04-15 09:42:07 +02:00
|
|
|
Sidecar Type = "sidecar"
|
|
|
|
Text Type = "text"
|
|
|
|
Other Type = "other"
|
|
|
|
)
|