mirror of
https://github.com/logos-co/open-law.git
synced 2025-01-09 14:25:58 +00:00
12 lines
230 B
Python
12 lines
230 B
Python
from flask import render_template, Blueprint
|
|
from flask_login import login_required
|
|
|
|
|
|
main_blueprint = Blueprint("main", __name__)
|
|
|
|
|
|
@main_blueprint.route("/")
|
|
@login_required
|
|
def index():
|
|
return render_template("index.html")
|