Router/Flow.go
2024-08-22 21:46:21 -05:00

10 lines
84 B
Go

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