1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00
Files
2023-01-02 14:58:03 -05:00

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)