mirror of
https://github.com/kevin-DL/ShortMe-URL-Shortener.git
synced 2026-01-18 22:05:07 +00:00
Initial commit
This commit is contained in:
9
app/server/routes/index.py
Normal file
9
app/server/routes/index.py
Normal file
@@ -0,0 +1,9 @@
|
||||
# ------- 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')
|
||||
Reference in New Issue
Block a user