This commit is contained in:
Donald Zou
2025-05-29 16:23:20 +08:00
parent e16435f4fc
commit 568da8cc64
27 changed files with 3529 additions and 1 deletions

9
src/client.py Normal file
View File

@@ -0,0 +1,9 @@
from flask import Blueprint, render_template, abort
import os
client = Blueprint('client', __name__, template_folder=os.path.abspath("./static/client/dist"))
@client.get(f'/client')
def clientIndex():
return render_template('client.html')