mirror of
https://github.com/Monadical-SAS/reflector.git
synced 2026-05-13 14:35: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
7 lines
191 B
Python
7 lines
191 B
Python
from typing import Literal
|
|
|
|
Platform = Literal["whereby", "daily", "livekit"]
|
|
WHEREBY_PLATFORM: Platform = "whereby"
|
|
DAILY_PLATFORM: Platform = "daily"
|
|
LIVEKIT_PLATFORM: Platform = "livekit"
|