mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2025-10-03 15:56:17 +00:00
Update
This commit is contained in:
9
src/client.py
Normal file
9
src/client.py
Normal 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')
|
Reference in New Issue
Block a user