diff options
Diffstat (limited to 'api/status.py')
-rw-r--r-- | api/status.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/api/status.py b/api/status.py new file mode 100644 index 0000000..9d6ba37 --- /dev/null +++ b/api/status.py @@ -0,0 +1,7 @@ +from flask import Blueprint + +status = Blueprint('status', __name__) + +@status.route('/status') +def index(): + return "" |