예제 #1
0
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")