mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 16:37:31 +00:00
8 lines
115 B
Go
8 lines
115 B
Go
package domain
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrNoAdminSpecified = errors.New("at least one admin must be specified")
|
|
)
|