blob: 5e42a3a8a2f39e7283817bf8ec7b8eb73d5062f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package domain
const (
DomainAlreadyExists = "A domain with this name already exists under this TLD."
DomainCreationFailed = "Failed to create domain."
DomainNameRequired = "Domain name is required."
DomainNotFound = "Domain not found."
DomainTLDRequired = "A TLD must be selected for the domain."
TLDAlreadyExists = "A TLD with this name already exists."
TLDCreationFailed = "Failed to create TLD."
TLDDeletionFailed = "Failed to delete TLD."
TLDNameRequired = "TLD name is required."
TLDNotFound = "TLD not found."
TLDProtected = "Default TLDs cannot be deleted."
TLDUpdateFailed = "Failed to update TLD."
)
|