mirror of
https://github.com/logos-co/open-law.git
synced 2025-01-10 23:06:06 +00:00
10 lines
175 B
Python
10 lines
175 B
Python
from flask import render_template, Blueprint
|
|
|
|
|
|
main_blueprint = Blueprint("main", __name__)
|
|
|
|
|
|
@main_blueprint.route("/")
|
|
def index():
|
|
return render_template("index.html")
|