mirror of
https://github.com/donaldzou/WGDashboard.git
synced 2025-07-16 10:06:59 +00:00
10 lines
246 B
Python
10 lines
246 B
Python
|
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')
|