WGDashboard/src/client.py

10 lines
246 B
Python
Raw Normal View History

2025-05-29 16:23:20 +08:00
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')