manage.get.gov/src/registrar/models/nameserver.py
2022-11-28 11:49:01 -06:00

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