TelegramAktienBot/webservice/interface.py
2022-03-14 07:35:26 +01:00

13 lines
289 B
Python

import os
from flask import Blueprint
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_tags():
return "Konfiguration"