6 lines
298 B
Dart
6 lines
298 B
Dart
// Public import for the platform-split transport. Consumers do:
|
|
// import 'package:telemetry_monitor/transport/websocket_transport.dart';
|
|
// and the right implementation is selected at compile time.
|
|
|
|
export 'websocket_transport_io.dart'
|
|
if (dart.library.html) 'websocket_transport_web.dart'; |