availabili.tf/backend-flask/app.py

26 lines
619 B
Python
Raw Normal View History

2024-11-10 17:21:25 -08:00
from flask import Blueprint, make_response, request
2024-11-02 12:33:27 -07:00
2024-11-10 17:21:25 -08:00
from app_db import app, connect_db_with_app
2024-11-02 12:33:27 -07:00
import login
import schedule
import team
from spec import spec
2024-11-02 12:33:27 -07:00
2024-11-10 17:21:25 -08:00
connect_db_with_app()
2024-11-02 12:33:27 -07:00
api = Blueprint("api", __name__, url_prefix="/api")
api.register_blueprint(login.api_login)
api.register_blueprint(schedule.api_schedule)
api.register_blueprint(team.api_team)
@api.get("/debug/set-cookie")
@api.post("/debug/set-cookie")
def debug_set_cookie():
res = make_response()
for key, value in request.args.items():
res.set_cookie(key, value)
return res, 200
app.register_blueprint(api)
spec.register(app)