balance-application/app.py

14 lines
322 B
Python
Raw Normal View History

2024-09-10 04:14:09 +00:00
from fastapi import FastAPI, Response
2024-09-10 05:20:11 +00:00
from routes.auth import router as auth
from routes.balance import router as balance
2024-09-10 01:31:17 +00:00
app = FastAPI()
2024-09-10 04:14:09 +00:00
@app.get("/")
def index(resp: Response):
resp.headers.setdefault("Content-Type", "text")
2024-09-10 01:31:17 +00:00
return "Hello, World!"
2024-09-10 05:20:11 +00:00
app.include_router(router=auth)
app.include_router(router=balance)