summaryrefslogtreecommitdiff
path: root/queue.go
blob: 11b9aa8b9072ccd6c5416ed42c7f4bc15eb59438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package main

//go:generate stringer -type=Type

type Type int

const (
	Task Type = iota
	Plot
)

type Queue struct {
	Type     Type
	Duration int
	Title    string
}