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.

16 lines
291 B

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