proto-socket/dart/lib/proto_socket.dart
toki bdcebdeb56 feat: dart inbound gateway implementation and inbound queue ordering milestone progress
- Add inbound_gateway.dart, inbound_gateway_io.dart, inbound_gateway_web.dart
- Update communicator.dart and proto_socket.dart for inbound queue support
- Update browser_ws_import_compile.dart and communicator_test.dart
- Archive Dart gateway task (04_dart_gateway)
- Create plan and code review docs for go/kotlin/python/typescript gateways
- Update roadmap files (ROADMAP.md, current.md, inbound-queue-ordering.md)
2026-06-02 10:45:33 +09:00

18 lines
714 B
Dart

library proto_socket;
export 'src/communicator.dart';
export 'src/transport.dart';
export 'src/inbound_gateway.dart';
export 'src/inbound_gateway_io.dart'
if (dart.library.html) 'src/inbound_gateway_web.dart';
export 'src/base_client.dart';
export 'src/protobuf_client.dart'
if (dart.library.html) 'src/protobuf_client_web.dart';
export 'src/protobuf_server.dart'
if (dart.library.html) 'src/protobuf_server_web.dart';
export 'src/response_checker.dart';
export 'src/ws_protobuf_client_io.dart'
if (dart.library.html) 'src/ws_protobuf_client_web.dart';
export 'src/ws_protobuf_server.dart'
if (dart.library.html) 'src/ws_protobuf_server_web.dart';
export 'src/packets/message_common.pb.dart';