stream-poc2/model/slices.go
2025-10-09 22:21:38 +02:00

11 lines
159 B
Go

package model
type Slice struct {
Name string
StartTime float64
EndTime float64
}
func (s Slice) Len() float64 {
return s.EndTime - s.StartTime
}