12 lines
160 B
Go
Raw Normal View History

2024-03-13 13:04:03 +01:00
package router
// flow tells the main loop what it should do next.
type flow int
// Control flow values.
const (
flowStop flow = iota
flowBegin
flowNext
)