iop/apps/client/lib/iop_wire/parser_map.dart
toki 1fe368ad2c refactor: portal → client 앱 리팩토링 및 제어플랫폼 와이어 클라이언트 명명 변경
- apps/portal 디렉터리를 apps/client로 리팩터링
- ControlPlaneWireClient → WireClient 명명 변경
- 관련_proto import 정렬, struct protobuf 생성 제거
- README, docker-compose, 스크립트 등 일관성 개선
2026-05-28 20:24:45 +09:00

9 lines
396 B
Dart

import 'package:protobuf/protobuf.dart';
import '../gen/proto/iop/control.pb.dart';
final Map<String, GeneratedMessage Function(List<int>)> clientParserMap = {
'iop.ClientHelloRequest': ClientHelloRequest.fromBuffer,
'iop.ClientHelloResponse': ClientHelloResponse.fromBuffer,
'ClientHelloRequest': ClientHelloRequest.fromBuffer,
'ClientHelloResponse': ClientHelloResponse.fromBuffer,
};