mirror of
https://github.com/grillazz/fastapi-sqlalchemy-asyncpg.git
synced 2026-07-28 05:00:38 +03:00
wip: implement websocket chat service with Pydantic models and session management
This commit is contained in:
@@ -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"]
|
||||
Reference in New Issue
Block a user