"""Route handlers for Misc endpoints.""" from account import config from account.api import app from owsresponse import response from owsresponse.adaptors.flask import flaskify @app.route(config.HEALTH_CHECK) def health(): """Check the health of the application.""" return flaskify(response.Response({'status': 'ok'}))