diff options
Diffstat (limited to 'qc_app/parse_error.py')
-rw-r--r-- | qc_app/parse_error.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/qc_app/parse_error.py b/qc_app/parse_error.py new file mode 100644 index 0000000..1414b78 --- /dev/null +++ b/qc_app/parse_error.py @@ -0,0 +1,9 @@ +"""Parse Error handling blue print""" +from flask import Blueprint + +parseerrbp = Blueprint("parse_error", __name__) + +@parseerrbp.route("/", methods=["GET"]) +def parse_success(): + """Indicates success if parsing the file is fails""" + return "STUB: Parse error!!!" |