15 lines
191 B
Python
15 lines
191 B
Python
from fastapi import FastAPI
|
|
|
|
import routers
|
|
|
|
app = FastAPI()
|
|
routers_list = [
|
|
routers.auth_router,
|
|
routers.deal_router
|
|
]
|
|
for router in routers_list:
|
|
app.include_router(router)
|
|
|
|
|
|
|