- apps/portal 디렉터리를 apps/client로 리팩터링 - ControlPlaneWireClient → WireClient 명명 변경 - 관련_proto import 정렬, struct protobuf 생성 제거 - README, docker-compose, 스크립트 등 일관성 개선
9 lines
396 B
Dart
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,
|
|
};
|