mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 18:57:32 +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")
|
||
|
)
|