Added files generated by Claude, prompted by sdk based on the md files

This commit is contained in:
Florian "flowdy" Heß
2026-06-21 19:23:54 +02:00
parent 7bc1ad4536
commit 822e2c9f42
20 changed files with 1886 additions and 0 deletions

16
__init__.py Normal file
View File

@@ -0,0 +1,16 @@
from flask import Blueprint, render_template, request
blueprint = Blueprint(
'vue3_neusik',
__name__,
static_folder='static',
static_url_path='/static',
template_folder='templates',
)
@blueprint.route('/', methods=['GET'])
def index():
return render_template(
'vue3_neusik/index.html',
import_on_load='true' if request.args.get('import') == '1' else 'false',
)