mirror of
https://github.com/owncast/owncast.git
synced 2024-10-10 19:16:02 +00:00
14 lines
290 B
Go
14 lines
290 B
Go
package replays
|
|
|
|
import "time"
|
|
|
|
// HLSSegment represents a single HLS segment.
|
|
type HLSSegment struct {
|
|
ID string
|
|
StreamID string
|
|
Timestamp time.Time
|
|
RelativeTimestamp float32
|
|
OutputConfigurationID string
|
|
Path string
|
|
}
|