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