aliabid94 HF Staff commited on
Commit
8723817
·
1 Parent(s): b3732e2

Update server_test.py

Browse files
Files changed (1) hide show
  1. 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>"