You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
265 B

import uvicorn
from fastapi import FastAPI
from server.routers_init import all_routers
app = FastAPI(
title="Конвеер"
)
for router in all_routers:
app.include_router(router)
if __name__ == "__main__":
uvicorn.run(app="main:app", reload=True)