From 19141835db5200486a60060a0aba04adecc4cd89 Mon Sep 17 00:00:00 2001 From: Tom Edwards <edwardstj1@cardiff.ac.uk> Date: Wed, 29 May 2024 14:01:33 +0100 Subject: [PATCH] initial commit --- main.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/main.py b/main.py index 8d5bd63..6bb0e4b 100644 --- a/main.py +++ b/main.py @@ -10,6 +10,10 @@ def home(): return "Hello World!" +@app.route("/system-check") +def test(): + return "Success" + @app.route("/ner") def ner(): result = get_ner_for_data() -- GitLab