15 lines
530 B
Dart
15 lines
530 B
Dart
/// 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/webhook_handler.dart';
|