edge/pkg/module/share/error.go

9 lines
145 B
Go
Raw Normal View History

2023-04-13 10:16:48 +02:00
package share
import "errors"
var (
ErrNotFound = errors.New("not found")
ErrAttributeRequired = errors.New("attribute required")
)