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