from flask import jsonify class HealthView: """API for health check""" @staticmethod def get(): return jsonify({'status': 'OK'})