From 98c8d37724bc29aea72813ec95b80a79e34f3c6e Mon Sep 17 00:00:00 2001 From: Fred Boniface Date: Tue, 30 Apr 2024 22:02:14 +0100 Subject: [PATCH] Update speedyf/main.py --- speedyf/main.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/speedyf/main.py b/speedyf/main.py index a08eb95..0a9cea9 100644 --- a/speedyf/main.py +++ b/speedyf/main.py @@ -21,4 +21,7 @@ def new_job(): def job_status(): job_id = request.args.get('job_id') job_info = job_manager.get_job_status(job_id) - return jsonify(job_info), 200 \ No newline at end of file + return jsonify(job_info), 200 + +if __name__ == "__main__": + app.run(debug=True) \ No newline at end of file