File size: 140 Bytes
a2b7723
 
 
 
 
 
 
1
2
3
4
5
6
7
from fastapi import FastAPI
from routers import user, team

app = FastAPI()

app.include_router(user.router)
app.include_router(team.router)