feat: complete local version to overwrite remote

This commit is contained in:
DelLevin-Home
2026-06-16 03:30:57 +08:00
parent 1735c19f48
commit 3c78293f4d
129 changed files with 22814 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
# -*- coding: utf-8 -*-
from flask import Blueprint, render_template
bp = Blueprint('qr_code', __name__, url_prefix='/qr-code')
@bp.route('/')
def page():
return render_template('qr_code.html')