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