Add mock show generator and timeline benchmark

This commit is contained in:
Ian Gulliver
2026-02-20 20:20:25 -07:00
parent 2c31d9505c
commit 287ca83724
5 changed files with 128 additions and 5 deletions

View File

@@ -47,10 +47,6 @@ type cellKey struct {
}
func BuildTimeline(show *Show) (Timeline, error) {
if err := show.validate(); err != nil {
return Timeline{}, err
}
tl := Timeline{
show: show,
Blocks: map[string]*Block{},