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

19 lines
257 B
Python

#
#
#
from .base import Record
from .chunked import _ChunkedValue, _ChunkedValuesMixin
class TxtValue(_ChunkedValue):
pass
class TxtRecord(_ChunkedValuesMixin, Record):
_type = 'TXT'
_value_type = TxtValue
Record.register_type(TxtRecord)