mirror of
https://github.com/YspCoder/clawgo.git
synced 2026-04-13 04:27:28 +08:00
9 lines
158 B
Go
9 lines
158 B
Go
package tools
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrUnsupportedAction = errors.New("unsupported action")
|
|
ErrMissingField = errors.New("missing required field")
|
|
)
|