示例#1
0
def catch_freelancer_register():
    return app.send_static_file('index.html')
示例#2
0
def catch_employer_register():
    return app.send_static_file('index.html')
示例#3
0
def catch_login_employer():
    return app.send_static_file('index.html')
示例#4
0
def catch_login_freelancer():
    return app.send_static_file('index.html')
示例#5
0
def catch_employee():
    return app.send_static_file('index.html')
示例#6
0
def catch():
    return app.send_static_file('index.html')