router/flow.go
2025-06-06 17:08:12 +02:00

11 lines
No EOL
159 B
Go

package router
// flow tells the main loop what it should do next.
type flow int
// Control flow values.
const (
flowStop flow = iota
flowBegin
flowNext
)