initial commit

This commit is contained in:
Mike Mason
2023-07-01 00:04:52 +00:00
commit 80fb879ef6
65 changed files with 3544 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package service
import "errors"
var (
// ErrRootTenantRequired is returned when no root tenant has been defined for the service.
ErrRootTenantRequired = errors.New("root tenant required")
// ErrPublisherRequired is defined when a publisher is not provided to the service.
ErrPublisherRequired = errors.New("publisher required")
// ErrRoleUnrecognized is returned when no corresponding role was matched.
ErrRoleUnrecognized = errors.New("unrecognized role")
)