Fixed imports

This commit is contained in:
2022-03-14 17:36:38 +01:00
parent 6923095939
commit e3106ec0ea
6 changed files with 19 additions and 19 deletions

View File

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