miyataken999
update
3934e0b
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)