open-law/app/views/main.py

10 lines
175 B
Python
Raw Normal View History

2023-04-20 16:10:16 +03:00
from flask import render_template, Blueprint
2023-04-28 14:24:38 +03:00
2023-04-20 16:10:16 +03:00
main_blueprint = Blueprint("main", __name__)
@main_blueprint.route("/")
def index():
return render_template("index.html")