mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2026-04-26 23:25:18 +00:00
* feat: Livekit bare no recording nor pipeline * feat: full livekit pipeline * fix: caddy hatchet with livekit * fix: caddy livekit * fix: hatchet tls * fix: agg to webm for no padding * fix: reflector user id on participants and duration fix * fix: better docs and internal review fixes * fix: remove video files livekit
13 lines
264 B
Python
13 lines
264 B
Python
"""
|
|
LiveKit API Module — thin wrapper around the livekit-api SDK.
|
|
"""
|
|
|
|
from .client import LiveKitApiClient
|
|
from .webhooks import create_webhook_receiver, verify_webhook
|
|
|
|
__all__ = [
|
|
"LiveKitApiClient",
|
|
"create_webhook_receiver",
|
|
"verify_webhook",
|
|
]
|