minyma/minyma/api/common.py
2023-10-15 21:49:16 -04:00

8 lines
240 B
Python

from flask import make_response, render_template, send_from_directory
from flask import Blueprint
bp = Blueprint("common", __name__)
@bp.route("/", methods=["GET"])
def main_entry():
return make_response(render_template("index.html"))