mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-07-13 22:45:05 +02:00
Merge branch 'main' into za/850-epp-contact-get
This commit is contained in:
commit
6c7ca8bb97
8 changed files with 413 additions and 20 deletions
|
@ -11,6 +11,7 @@ logger = logging.getLogger(__name__)
|
|||
|
||||
NAMESPACE = SimpleNamespace(
|
||||
EPP="urn:ietf:params:xml:ns:epp-1.0",
|
||||
SEC_DNS="urn:ietf:params:xml:ns:secDNS-1.1",
|
||||
XSI="http://www.w3.org/2001/XMLSchema-instance",
|
||||
FRED="noop",
|
||||
NIC_CONTACT="urn:ietf:params:xml:ns:contact-1.0",
|
||||
|
@ -25,6 +26,7 @@ NAMESPACE = SimpleNamespace(
|
|||
SCHEMA_LOCATION = SimpleNamespace(
|
||||
XSI="urn:ietf:params:xml:ns:epp-1.0 epp-1.0.xsd",
|
||||
FRED="noop fred-1.5.0.xsd",
|
||||
SEC_DNS="urn:ietf:params:xml:ns:secDNS-1.1 secDNS-1.1.xsd",
|
||||
NIC_CONTACT="urn:ietf:params:xml:ns:contact-1.0 contact-1.0.xsd",
|
||||
NIC_DOMAIN="urn:ietf:params:xml:ns:domain-1.0 domain-1.0.xsd",
|
||||
NIC_ENUMVAL="noop enumval-1.2.0.xsd",
|
||||
|
@ -45,6 +47,7 @@ try:
|
|||
from .client import CLIENT, commands
|
||||
from .errors import RegistryError, ErrorCode
|
||||
from epplib.models import common, info
|
||||
from epplib.responses import extensions
|
||||
from epplib import responses
|
||||
except ImportError:
|
||||
pass
|
||||
|
@ -53,6 +56,7 @@ __all__ = [
|
|||
"CLIENT",
|
||||
"commands",
|
||||
"common",
|
||||
"extensions",
|
||||
"responses",
|
||||
"info",
|
||||
"ErrorCode",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue