wip: implement websocket chat service with Pydantic models and session management

This commit is contained in:
grillazz
2026-07-14 11:12:45 +02:00
parent eb8acd7b7c
commit 2cf22f89cc
9 changed files with 353 additions and 14 deletions
+11
View File
@@ -0,0 +1,11 @@
"""Thin re-export module matching the suggested ``app/ws.py`` layout.
The actual websocket router lives in :mod:`app.api.chat` (consistent with
this project's convention of keeping all routers under ``app/api``). This
module simply re-exports it so the chat service can also be wired up as
``from app.ws import router``.
"""
from app.api.chat import router
__all__ = ["router"]