mirror of
https://github.com/kevin-DL/ShortMe-URL-Shortener.git
synced 2026-01-12 11:25:15 +00:00
10 lines
252 B
Python
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')
|