package main //go:generate stringer -type=Type type Type int const ( Task Type = iota Plot ) type Queue struct { Type Type Duration int Title string }