from flask import Blueprint, jsonify

# Create blueprint for health routes
health_bp = Blueprint('health', __name__)


@health_bp.route('/api/health', methods=['GET'])
def health_check():
    """Health check endpoint"""
    return jsonify({
        'status': 'healthy',
        'message': 'ACT License Checker API is running'
    }) 