10 lines
84 B
Go
10 lines
84 B
Go
|
package router
|
||
|
|
||
|
type Flow int
|
||
|
|
||
|
const (
|
||
|
flowStop Flow = iota
|
||
|
flowBegin
|
||
|
flowNext
|
||
|
)
|