17 lines
314 B
Python
17 lines
314 B
Python
from fastapi import Depends, FastAPI
|
|
|
|
from routers_v3 import current, players
|
|
|
|
app = FastAPI(
|
|
responses={404: {'description': 'Not found'}}
|
|
)
|
|
|
|
|
|
app.include_router(current.router)
|
|
app.include_router(players.router)
|
|
|
|
|
|
# @app.get("/api")
|
|
# async def root():
|
|
# return {"message": "Hello Bigger Applications!"}
|