mirror of
https://github.com/cisagov/manage.get.gov.git
synced 2025-08-03 08:22:18 +02:00
16 lines
428 B
Python
16 lines
428 B
Python
from .host import Host
|
|
|
|
|
|
class Nameserver(Host):
|
|
"""
|
|
A nameserver is a host which has been delegated to respond to DNS queries.
|
|
|
|
The registry is the source of truth for this data.
|
|
|
|
This model exists ONLY to allow a new registrant to draft DNS entries
|
|
before their application is approved.
|
|
"""
|
|
|
|
# there is nothing here because all of the fields are
|
|
# defined over there on the Host class
|
|
pass
|