コード例 #1
0
ファイル: server.py プロジェクト: mohammedmustafa2348/Twd
def index():
    return app.send_static_file('client.html')
コード例 #2
0
def welcome_view():
    return app.send_static_file('client.html')
コード例 #3
0
ファイル: views.py プロジェクト: Adeline-Wei/TDDD97
def index():
    return app.send_static_file('client.html')
コード例 #4
0
ファイル: server.py プロジェクト: iawls/TDDD97
def root():
    return app.send_static_file("client.html")
コード例 #5
0
def welcome_view():
    print("redirecting...")
    return app.send_static_file('client.html')
コード例 #6
0
ファイル: views.py プロジェクト: Schlyana/TDDD97
def hello():
    return app.send_static_file("client.html")