kenken999's picture
update
b97a3a5
raw
history blame contribute delete
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)