mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
19 lines
235 B
Python
19 lines
235 B
Python
#
|
|
#
|
|
#
|
|
|
|
from .base import Record, ValuesMixin
|
|
from .target import _TargetsValue
|
|
|
|
|
|
class NsValue(_TargetsValue):
|
|
pass
|
|
|
|
|
|
class NsRecord(ValuesMixin, Record):
|
|
_type = 'NS'
|
|
_value_type = NsValue
|
|
|
|
|
|
Record.register_type(NsRecord)
|