12 lines
368 B
Python
12 lines
368 B
Python
from fastapi import FastAPI
|
|
from system.auth import auth_router
|
|
from system.prefixes import prefix_router
|
|
from data.tickets import tickets_router
|
|
from data.baskets import basket_router
|
|
|
|
def imp_routers(app: FastAPI):
|
|
app.include_router(auth_router)
|
|
app.include_router(prefix_router)
|
|
app.include_router(tickets_router)
|
|
app.include_router(basket_router)
|