7 lines
112 B
Python
7 lines
112 B
Python
from fastapi import FastAPI
|
|
|
|
from .ws import router as ws_router
|
|
|
|
app = FastAPI()
|
|
app.include_router(ws_router)
|