edge/pkg/module/share/error.go
William Petit f99b1ac6ac
All checks were successful
arcad/edge/pipeline/head This commit looks good
feat(module,share): cross-app resource sharing module
2023-04-21 12:40:09 +02:00

9 lines
145 B
Go

package share
import "errors"
var (
ErrNotFound = errors.New("not found")
ErrAttributeRequired = errors.New("attribute required")
)