"""Route handlers for Misc endpoints.""" from flask import jsonify from permissions import config from permissions.api import app @app.route(config.HEALTH_CHECK, methods=['GET']) def health(): """Check the health of the application.""" return jsonify({'status': 'ok'})