Router/flow.go

10 lines
84 B
Go
Raw Normal View History

2024-08-22 21:46:21 -05:00
package router
type Flow int
const (
flowStop Flow = iota
flowBegin
flowNext
)