mirror of
https://github.com/kevin-DL/ShortMe-URL-Shortener.git
synced 2026-01-11 11:04:28 +00:00
14 lines
410 B
Python
14 lines
410 B
Python
# ------- standard library imports -------
|
|
import os
|
|
|
|
# ------- 3rd party imports -------
|
|
from flask import Blueprint, send_from_directory
|
|
|
|
app_blueprint = Blueprint('app_blueprint', __name__)
|
|
|
|
|
|
@app_blueprint.route('/favicon.ico')
|
|
def favicon():
|
|
return send_from_directory(os.path.join(app_blueprint.root_path, 'static'),
|
|
'favicon.ico', mimetype='image/vnd.microsoft.icon')
|