Implement audio calls

This commit is contained in:
2025-09-21 19:09:39 +03:00
Unverified
parent 27902cf092
commit a853164b50
20 changed files with 1265 additions and 12 deletions
+3 -2
View File
@@ -5,7 +5,7 @@ import subprocess
import sys
import os
from routes import account, messaging, profile, push
from routes import account, messaging, profile, push, webrtc
@asynccontextmanager
async def lifespan(app: FastAPI):
@@ -56,4 +56,5 @@ app.add_middleware(
app.include_router(account.router)
app.include_router(messaging.router)
app.include_router(profile.router)
app.include_router(push.router, prefix="/push")
app.include_router(push.router, prefix="/push")
app.include_router(webrtc.router, prefix="/webrtc")