Files
ShortMe-URL-Shortener/app/server/routes/index.py
2021-03-24 15:13:32 +02:00

10 lines
252 B
Python

# ------- 3rd party imports -------
from flask import render_template, Blueprint
index_blueprint = Blueprint('index_blueprint', __name__, template_folder='templates')
@index_blueprint.route("/")
def index():
return render_template('index.html')