mirror of
https://github.com/kevin-DL/ShortMe-URL-Shortener.git
synced 2026-01-11 11:04:28 +00:00
10 lines
281 B
Python
10 lines
281 B
Python
# ------- 3rd party imports -------
|
|
from flask import Blueprint, render_template
|
|
|
|
get_token_blueprint = Blueprint('get_token_blueprint', __name__, template_folder='templates')
|
|
|
|
|
|
@get_token_blueprint.route('/get_token')
|
|
def get_token():
|
|
return render_template('get_token.html')
|