mirror of
https://github.com/logos-co/open-law.git
synced 2025-01-09 14:25:58 +00:00
10 lines
181 B
Python
10 lines
181 B
Python
from flask import redirect, url_for, Blueprint
|
|
|
|
|
|
main_blueprint = Blueprint("main", __name__)
|
|
|
|
|
|
@main_blueprint.route("/")
|
|
def index():
|
|
return redirect(url_for("home.get_all"))
|