memories/go_vod/chunk.go

16 lines
199 B
Go
Raw Normal View History

2023-10-21 18:36:22 +00:00
package go_vod
2023-04-04 01:44:11 +00:00
type Chunk struct {
id int
done bool
notifs []chan bool
}
func NewChunk(id int) *Chunk {
return &Chunk{
id: id,
done: false,
notifs: make([]chan bool, 0),
}
2023-10-21 18:36:22 +00:00
}