Router/flow.go
2024-09-05 13:04:17 -05:00

10 lines
84 B
Go

package router
type Flow int
const (
flowStop Flow = iota
flowBegin
flowNext
)