mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-18 16:01:18 +00:00
9 lines
157 B
Go
9 lines
157 B
Go
package errx
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrInvalidEventFormat = errors.New("invalid event format")
|
|
ErrResourceNotFound = errors.New("resource not found")
|
|
)
|