"""Utility Handlers.""" from flask import Blueprint from flask import jsonify from abacus_account import config base_api = Blueprint('base_api', __name__) @base_api.route(config.Config.HEALTH_CHECK, methods=['GET']) def health(): """Check the health of the application.""" return jsonify({'status': 'ok'})