open-law/app/views/main.py

10 lines
181 B
Python
Raw Normal View History

2023-05-10 14:51:08 +03:00
from flask import redirect, url_for, 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():
2023-05-10 14:51:08 +03:00
return redirect(url_for("home.get_all"))