mirror of
https://github.com/dograh-hq/dograh.git
synced 2026-06-22 08:38:13 +02:00
11 lines
296 B
Python
11 lines
296 B
Python
|
|
"""Twilio frame serializer.
|
||
|
|
|
||
|
|
Re-exported from pipecat. Kept local so transport.py imports from
|
||
|
|
``.serializers`` and we have an obvious place to drop a custom subclass if
|
||
|
|
pipecat upstream lags.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from pipecat.serializers.twilio import TwilioFrameSerializer
|
||
|
|
|
||
|
|
__all__ = ["TwilioFrameSerializer"]
|