itplanning/ITPlanning/frontend/__init__.py

9 lines
166 B
Python
Raw Normal View History

2021-05-26 11:56:20 +00:00
from flask import Blueprint, render_template
frontend = Blueprint("frontend", __name__)
@frontend.route("/")
def index():
return render_template("index.html")