We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67c1e20 commit 69e3433Copy full SHA for 69e3433
backend/analytics_server/mhq/api/health.py
@@ -2,8 +2,6 @@
2
3
app = Blueprint("health", __name__)
4
5
-
6
@app.route("/health", methods=["GET"])
7
def health_check():
8
9
return {"status": "healthy"}
backend/analytics_server/mhq/api/hello.py
app = Blueprint("hello", __name__)
@app.route("/", methods=["GET"])
def hello_world():
return {"message": "hello world"}
0 commit comments