mirror of
https://github.com/grillazz/fastapi-sqlalchemy-asyncpg.git
synced 2026-07-28 05:00:38 +03:00
12 lines
381 B
Python
12 lines
381 B
Python
"""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"]
|