mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 13:24:33 +03:00
13 lines
290 B
Go
13 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
|
|
}
|