Files
warmbly/internal/errx/normal.go
T

9 lines
157 B
Go

package errx
import "errors"
var (
ErrInvalidEventFormat = errors.New("invalid event format")
ErrResourceNotFound = errors.New("resource not found")
)