11 lines
No EOL
159 B
Go
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
|
|
) |