Files
lpms/types/types.go
2017-02-28 23:52:41 -05:00

21 lines
264 B
Go

package types
import "time"
type HlsSegment struct {
Data []byte
Name string
}
type Download struct {
URI string
TotalDuration time.Duration
}
type BroadcastReq struct {
formats []string
bitrates []string
codecin string
codecout []string
}