12 lines
298 B
Go
12 lines
298 B
Go
package constants
|
|
|
|
const (
|
|
ExtXStreamInf = "#EXT-X-STREAM-INF"
|
|
ExtXMedia = "#EXT-X-MEDIA"
|
|
ExtXTargetDuration = "#EXT-X-TARGETDURATION"
|
|
ExtInf = "#EXTINF"
|
|
ExtXEndList = "#EXT-X-ENDLIST"
|
|
ExtXPlaylistType = "#EXT-X-PLAYLIST-TYPE"
|
|
PlaylistTypeVOD = "VOD"
|
|
)
|