mirror of
https://github.com/foomo/fender.git
synced 2026-06-28 22:00:03 +00:00
11 lines
125 B
Go
11 lines
125 B
Go
package rule
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
ErrBreak = errors.New("break")
|
|
ErrUnhandled = errors.New("unhandled type")
|
|
)
|