kenken999's picture
fda
0f43f8a
raw
history blame
148 Bytes
from fastapi import FastAPI
from app.routers import users, teams
app = FastAPI()
app.include_router(users.router)
app.include_router(teams.router)