kenken999's picture
test
1f074d8
raw
history blame
156 Bytes
from fastapi import FastAPI
from app.main import app
from app.routers import users, teams
app.include_router(users.router)
app.include_router(teams.router)