/// Shared integration abstractions for the Kell Creations platform. /// /// This library defines the contracts that all external channel integrations /// (WooCommerce, Square, etc.) must implement. Concrete implementations live /// in their respective feature or data packages. library; export 'src/api_client.dart'; export 'src/api_exception.dart'; export 'src/channel_adapter.dart'; export 'src/integration_health_check.dart'; export 'src/rate_limiter.dart'; export 'src/retry_policy.dart'; export 'src/square_api_client.dart'; export 'src/square_inventory_mapper.dart'; export 'src/square_product_mapper.dart'; export 'src/webhook_handler.dart';