mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
20 lines
296 B
Python
20 lines
296 B
Python
#
|
|
#
|
|
#
|
|
|
|
from .base import Record, ValueMixin
|
|
from .dynamic import _DynamicMixin
|
|
from .target import _TargetValue
|
|
|
|
|
|
class DnameValue(_TargetValue):
|
|
pass
|
|
|
|
|
|
class DnameRecord(_DynamicMixin, ValueMixin, Record):
|
|
_type = 'DNAME'
|
|
_value_type = DnameValue
|
|
|
|
|
|
Record.register_type(DnameRecord)
|