itplanning/ITPlanning/frontend/__init__.py
2021-05-26 13:56:20 +02:00

9 lines
166 B
Python

from flask import Blueprint, render_template
frontend = Blueprint("frontend", __name__)
@frontend.route("/")
def index():
return render_template("index.html")