TelegramAktienBot/webservice/interface.py
H4CK3R-01 6923095939 Many api changes
- Added basic jwt auth
- Added keyword endpoints
- added share/symbol endpoints
- updated postman
- refactoring
2022-03-14 17:10:00 +01:00

13 lines
320 B
Python

import os
from flask import Blueprint, render_template
interface = Blueprint('interface', __name__, url_prefix='/')
__location__ = os.path.realpath(os.path.join(os.getcwd(), os.path.dirname(__file__)))
# Return all tags
@interface.route('/', methods=['GET'])
def get_html():
return render_template("index.html")