Ivan Shelonik commited on
Commit
0c120b4
·
1 Parent(s): b71ad0c

add hello world page

Browse files
Files changed (1) hide show
  1. api_server.py +5 -0
api_server.py CHANGED
@@ -127,6 +127,11 @@ def version():
127
  return '1.0'
128
 
129
 
 
 
 
 
 
130
  # Start the Flask application
131
  if __name__ == '__main__':
132
  app.run()
 
127
  return '1.0'
128
 
129
 
130
+ @app.route("/")
131
+ def hello_world():
132
+ return "<p>Hello, Team!</p>"
133
+
134
+
135
  # Start the Flask application
136
  if __name__ == '__main__':
137
  app.run()