mirror of
https://github.com/github/octodns.git
synced 2024-05-11 05:55:00 +00:00
15 lines
220 B
Python
15 lines
220 B
Python
#
|
|
#
|
|
#
|
|
|
|
from .base import Record
|
|
from .chunked import _ChunkedValue, _ChunkedValuesMixin
|
|
|
|
|
|
class SpfRecord(_ChunkedValuesMixin, Record):
|
|
_type = 'SPF'
|
|
_value_type = _ChunkedValue
|
|
|
|
|
|
Record.register_type(SpfRecord)
|