open-law/app/views/home.py

16 lines
224 B
Python

from flask import (
Blueprint,
render_template,
)
bp = Blueprint("home", __name__, url_prefix="/home")
@bp.route("/", methods=["GET"])
def get_all():
return render_template(
"home/index.html",
)