kenken999's picture
test
df50319
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)