mirror of https://github.com/logos-co/open-law.git
16 lines
224 B
Python
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",
|
||
|
)
|