from fastapi import FastAPI from .ws import router as ws_router app = FastAPI() app.include_router(ws_router)