Skip to content

Commit 2ec3586

Browse files
committed
Minor reformating
1 parent 58f7f91 commit 2ec3586

File tree

1 file changed

+14
-4
lines changed

1 file changed

+14
-4
lines changed

networkservice/networkservice.proto

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,59 @@
1-
syntax = "proto3";
1+
syntax = "proto3";
22

33
// NETWORK SERVICES
44

55
message DiscoverServiceRequest {
66
map<string, string> labels = 1;
77
}
8+
89
message ServiceDiscoveryResponse {
910
repeated string service_ids = 1;
1011
}
1112

1213
message PublishServiceRequest {
1314
map<string, string> labels = 1;
1415
}
16+
1517
message PublishServiceResponse {
1618
string service_id = 1;
1719
}
1820

1921
message DelistServiceRequest {
2022
string service_id = 1;
2123
}
22-
message DelistServiceResponse {}
24+
25+
message DelistServiceResponse {
26+
}
2327

2428
message ExposeChannelRequest {
2529
map<string, string> labels = 1;
2630
}
31+
2732
message ExposeChannelResponse {
2833
string channel_id = 1;
2934
}
3035

3136
message ConcealChannelRequest {
3237
string channel_id = 1;
3338
}
34-
message ConcealChannelResponse {}
39+
40+
message ConcealChannelResponse {
41+
}
3542

3643
message CreateConnectionRequest {
3744
map<string, string> labels = 1;
3845
}
46+
3947
message CreateConnectionResponse {
4048
string connection_id = 1;
4149
}
4250

4351
message DestroyConnectionRequest {
4452
string connection_id = 1;
4553
}
46-
message DestroyConnectionResponse {}
54+
55+
message DestroyConnectionResponse {
56+
}
4757

4858
service NetworkServices {
4959
rpc DiscoverService (DiscoverServiceRequest) returns (ServiceDiscoveryResponse);

0 commit comments

Comments
 (0)