Spaces:
Sleeping
Sleeping
Update server_test.py
Browse files- server_test.py +4 -0
server_test.py
CHANGED
@@ -6,6 +6,10 @@ app = Flask(__name__)
|
|
6 |
def start():
|
7 |
return "start"
|
8 |
|
|
|
|
|
|
|
|
|
9 |
@app.route("/200")
|
10 |
def hello_world():
|
11 |
return "<p>Hello, World!</p>"
|
|
|
6 |
def start():
|
7 |
return "start"
|
8 |
|
9 |
+
@app.route("/config")
|
10 |
+
def config():
|
11 |
+
return {}
|
12 |
+
|
13 |
@app.route("/200")
|
14 |
def hello_world():
|
15 |
return "<p>Hello, World!</p>"
|