12 lines
160 B
Go
12 lines
160 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
|
||
|
)
|