blob: 13d7a3843a580a3f7c0f975d16d097a3b2de81ca [file] [log] [blame]
Zack Williams52209662019-02-07 10:15:31 -07001// Copyright (c) 2018 Open Networking Foundation
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at:
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
15syntax = "proto3";
William Kurkian7c151592019-03-27 09:36:15 -040016
Serkant Uluderyacbcfaa42019-10-18 13:25:08 +030017option go_package = "github.com/opencord/voltha-protos/v3/go/openolt";
18option java_package = "org.opencord.voltha.openolt";
19option java_outer_classname = "VolthaOpenOLT";
William Kurkian7c151592019-03-27 09:36:15 -040020
Zack Williams52209662019-02-07 10:15:31 -070021package openolt;
22import "google/api/annotations.proto";
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -040023import public "voltha_protos/tech_profile.proto";
Dinesh Belwalkared6da5e2020-02-25 11:23:57 -080024import public "voltha_protos/common.proto";
Zack Williams52209662019-02-07 10:15:31 -070025
26service Openolt {
27
28 rpc DisableOlt(Empty) returns (Empty) {
29 option (google.api.http) = {
30 post: "/v1/Disable"
31 body: "*"
32 };
33 }
34
35 rpc ReenableOlt(Empty) returns (Empty) {
36 option (google.api.http) = {
37 post: "/v1/Reenable"
38 body: "*"
39 };
40 }
41
42 rpc ActivateOnu(Onu) returns (Empty) {
43 option (google.api.http) = {
44 post: "/v1/EnableOnu"
45 body: "*"
46 };
47 }
48
49 rpc DeactivateOnu(Onu) returns (Empty) {
50 option (google.api.http) = {
51 post: "/v1/DisableOnu"
52 body: "*"
53 };
54 }
55
56 rpc DeleteOnu(Onu) returns (Empty) {
57 option (google.api.http) = {
58 post: "/v1/DeleteOnu"
59 body: "*"
60 };
61 }
62
63 rpc OmciMsgOut(OmciMsg) returns (Empty) {
64 option (google.api.http) = {
65 post: "/v1/OmciMsgOut"
66 body: "*"
67 };
68 }
69
70 rpc OnuPacketOut(OnuPacket) returns (Empty) {
71 option (google.api.http) = {
72 post: "/v1/OnuPacketOut"
73 body: "*"
74 };
75 }
76
77 rpc UplinkPacketOut(UplinkPacket) returns (Empty) {
78 option (google.api.http) = {
79 post: "/v1/UplinkPacketOut"
80 body: "*"
81 };
82 }
83
84 rpc FlowAdd(Flow) returns (Empty) {
85 option (google.api.http) = {
86 post: "/v1/FlowAdd"
87 body: "*"
88 };
89 }
90
91 rpc FlowRemove(Flow) returns (Empty) {
92 option (google.api.http) = {
93 post: "/v1/FlowRemove"
94 body: "*"
95 };
96 }
97
98 rpc HeartbeatCheck(Empty) returns (Heartbeat) {
99 option (google.api.http) = {
100 post: "/v1/HeartbeatCheck"
101 body: "*"
102 };
103 }
104
105 rpc EnablePonIf(Interface) returns (Empty) {
106 option (google.api.http) = {
107 post: "/v1/EnablePonIf"
108 body: "*"
109 };
110 }
111
112 rpc DisablePonIf(Interface) returns (Empty) {
113 option (google.api.http) = {
114 post: "/v1/DisablePonIf"
115 body: "*"
116 };
117 }
118
119 rpc GetDeviceInfo(Empty) returns (DeviceInfo) {
120 option (google.api.http) = {
121 post: "/v1/GetDeviceInfo"
122 body: "*"
123 };
124 }
125
126 rpc Reboot(Empty) returns (Empty) {
127 option (google.api.http) = {
128 post: "/v1/Reboot"
129 body: "*"
130 };
131 }
132
133 rpc CollectStatistics(Empty) returns (Empty) {
134 option (google.api.http) = {
135 post: "/v1/CollectStatistics"
136 body: "*"
137 };
138 }
139
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400140 rpc CreateTrafficSchedulers(tech_profile.TrafficSchedulers) returns (Empty) {
Zack Williams52209662019-02-07 10:15:31 -0700141 option (google.api.http) = {
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400142 post: "/v1/CreateTrafficSchedulers"
Zack Williams52209662019-02-07 10:15:31 -0700143 body: "*"
144 };
145 }
146
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400147 rpc RemoveTrafficSchedulers(tech_profile.TrafficSchedulers) returns (Empty) {
Zack Williams52209662019-02-07 10:15:31 -0700148 option (google.api.http) = {
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400149 post: "/v1/RemoveTrafficSchedulers"
150 body: "*"
151 };
152 }
153
154 rpc CreateTrafficQueues(tech_profile.TrafficQueues) returns (Empty) {
155 option (google.api.http) = {
156 post: "/v1/CreateTrafficQueues"
157 body: "*"
158 };
159 }
160
161 rpc RemoveTrafficQueues(tech_profile.TrafficQueues) returns (Empty) {
162 option (google.api.http) = {
163 post: "/v1/RemoveTrafficQueues"
Zack Williams52209662019-02-07 10:15:31 -0700164 body: "*"
165 };
166 }
167
168 rpc EnableIndication(Empty) returns (stream Indication) {}
Burak Gurdag402dd952019-12-10 20:31:11 +0000169
170 rpc PerformGroupOperation(Group) returns (Empty) {
171 option (google.api.http) = {
172 post: "/v1/PerformGroupOperation"
173 body: "*"
174 };
175 }
Dinesh Belwalkared6da5e2020-02-25 11:23:57 -0800176
177 rpc GetExtValue(ValueParam) returns (common.ReturnValues) {
178 option (google.api.http) = {
179 post: "/v1/GetExtValue"
180 body: "*"
181 };
182 }
183
Jason Huang55ee29d2020-03-11 23:43:29 +0800184 rpc OnuItuPonAlarmSet(OnuItuPonAlarm) returns (Empty) {
185 option (google.api.http) = {
186 post: "/v1/OnuItuPonAlarmSet"
187 body: "*"
188 };
189 }
Zack Williams52209662019-02-07 10:15:31 -0700190}
191
192message Indication {
193 oneof data {
194 OltIndication olt_ind = 1;
195 IntfIndication intf_ind = 2;
196 IntfOperIndication intf_oper_ind = 3;
197 OnuDiscIndication onu_disc_ind = 4;
198 OnuIndication onu_ind = 5;
199 OmciIndication omci_ind = 6;
200 PacketIndication pkt_ind = 7;
201 PortStatistics port_stats = 8;
202 FlowStatistics flow_stats = 9;
203 AlarmIndication alarm_ind= 10;
204 }
205}
206
207message AlarmIndication {
208 oneof data {
209 LosIndication los_ind = 1;
210 DyingGaspIndication dying_gasp_ind = 2;
211 OnuAlarmIndication onu_alarm_ind = 3;
212 OnuStartupFailureIndication onu_startup_fail_ind = 4;
213 OnuSignalDegradeIndication onu_signal_degrade_ind = 5;
214 OnuDriftOfWindowIndication onu_drift_of_window_ind = 6;
215 OnuLossOfOmciChannelIndication onu_loss_omci_ind = 7;
216 OnuSignalsFailureIndication onu_signals_fail_ind = 8;
217 OnuTransmissionInterferenceWarning onu_tiwi_ind = 9;
218 OnuActivationFailureIndication onu_activation_fail_ind = 10;
219 OnuProcessingErrorIndication onu_processing_error_ind = 11;
Naga Manjunath0a734252019-11-21 19:00:23 +0530220 OnuLossOfKeySyncFailureIndication onu_loss_of_sync_fail_ind = 12;
221 OnuItuPonStatsIndication onu_itu_pon_stats_ind = 13;
Devmalya Paulea6eb472020-02-04 20:41:01 -0500222 OnuDeactivationFailureIndication onu_deactivation_failure_ind = 14;
Devmalya Paulb0c12472020-02-18 20:08:53 -0500223 OnuRemoteDefectIndication onu_remote_defect_ind = 15;
Devmalya Paul82957962020-03-01 18:49:37 -0500224 OnuLossOfGEMChannelDelineationIndication onu_loss_gem_delineation_ind = 16;
225 OnuPhysicalEquipmentErrorIndication onu_physical_equipment_error_ind = 17;
226 OnuLossOfAcknowledgementIndication onu_loss_of_ack_ind = 18;
Devmalya Paul342bf9d2020-03-19 02:42:56 -0400227 OnuDifferentialReachExceededIndication onu_diff_reach_exceeded_ind = 19;
Zack Williams52209662019-02-07 10:15:31 -0700228 }
229}
230
231message OltIndication {
232 string oper_state = 1; // up, down
233}
234
235message IntfIndication {
236 fixed32 intf_id = 1;
237 string oper_state = 2; // up, down
238}
239
240message OnuDiscIndication {
241 fixed32 intf_id = 1;
242 SerialNumber serial_number = 2;
243}
244
245message OnuIndication {
246 fixed32 intf_id = 1;
247 fixed32 onu_id = 2;
248 string oper_state = 3; // up, down
249 string admin_state = 5; // up, down
250 SerialNumber serial_number = 4;
251}
252
253message IntfOperIndication {
254 string type = 1; // nni, pon
255 fixed32 intf_id = 2;
256 string oper_state = 3; // up, down
257}
258
259message OmciIndication {
260 fixed32 intf_id = 1;
261 fixed32 onu_id = 2;
262 bytes pkt = 3;
263}
264
265message PacketIndication {
266 string intf_type = 5; // nni, pon, unknown
267 fixed32 intf_id = 1;
268 fixed32 gemport_id = 2;
269 fixed32 flow_id = 3;
270 fixed32 port_no = 6;
271 fixed64 cookie = 7;
272 bytes pkt = 4;
273}
274
275message Interface {
276 fixed32 intf_id = 1;
277}
278
279message Heartbeat {
280 fixed32 heartbeat_signature = 1;
281}
282
283message Onu {
284 fixed32 intf_id = 1;
285 fixed32 onu_id = 2;
286 SerialNumber serial_number = 3;
287 fixed32 pir = 4; // peak information rate assigned to onu
288}
289
290message OmciMsg {
291 fixed32 intf_id = 1;
292 fixed32 onu_id = 2;
293 bytes pkt = 3;
294}
295
296message OnuPacket {
297 fixed32 intf_id = 1;
298 fixed32 onu_id = 2;
299 fixed32 port_no = 4;
Abhilash Laxmeshwardfbb74d2019-07-23 08:03:08 -0400300 fixed32 gemport_id = 5;
Zack Williams52209662019-02-07 10:15:31 -0700301 bytes pkt = 3;
302}
303
304message UplinkPacket {
305 fixed32 intf_id = 1;
306 bytes pkt = 2;
307}
308
309message DeviceInfo {
310 string vendor = 1;
311 string model = 2;
312 string hardware_version = 3;
313 string firmware_version = 4;
314 string device_id = 16;
315 string device_serial_number = 17;
316
317 // Total number of pon intf ports on the device
318 fixed32 pon_ports = 12;
319
320 // If using global per-device technology profile. To be deprecated
321 string technology = 5;
322 fixed32 onu_id_start = 6;
323 fixed32 onu_id_end = 7;
324 fixed32 alloc_id_start = 8;
325 fixed32 alloc_id_end = 9;
326 fixed32 gemport_id_start = 10;
327 fixed32 gemport_id_end = 11;
328 fixed32 flow_id_start = 13;
329 fixed32 flow_id_end = 14;
330
331 message DeviceResourceRanges {
332
333 // List of 0 or more intf_ids that use the same technology and pools.
334 // If 0 intf_ids supplied, it implies ALL interfaces
335 repeated fixed32 intf_ids = 1;
336
337 // Technology profile for this pool
338 string technology = 2;
339
340 message Pool {
341 enum PoolType {
342 ONU_ID = 0;
343 ALLOC_ID = 1;
344 GEMPORT_ID = 2;
345 FLOW_ID = 3;
346 }
347
348 enum SharingType {
349 DEDICATED_PER_INTF = 0;
350 SHARED_BY_ALL_INTF_ALL_TECH = 1; // Shared across all interfaces in all technologies in all ranges
351 SHARED_BY_ALL_INTF_SAME_TECH = 2; // Shared across all interfaces of the same technology used in this range
352 }
353
354 PoolType type = 1;
355 SharingType sharing = 2;
356 fixed32 start = 3; // lower bound on IDs allocated from this pool
357 fixed32 end = 4; // upper bound on IDs allocated from this pool
358 }
359 repeated Pool pools = 3;
360 }
361 repeated DeviceResourceRanges ranges = 15;
362}
363
364message Classifier {
365 fixed32 o_tpid = 1;
366 fixed32 o_vid = 2;
367 fixed32 i_tpid = 3;
368 fixed32 i_vid = 4;
369 fixed32 o_pbits = 5;
370 fixed32 i_pbits = 6;
371 fixed32 eth_type = 7;
372 bytes dst_mac = 8;
373 bytes src_mac = 9;
374 fixed32 ip_proto = 10;
375 fixed32 dst_ip = 11;
376 fixed32 src_ip = 12;
377 fixed32 src_port = 13;
378 fixed32 dst_port = 14;
379 string pkt_tag_type = 15; // untagged, single_tag, double_tag
380}
381
382message ActionCmd {
383 bool add_outer_tag = 1;
384 bool remove_outer_tag = 2;
385 bool trap_to_host = 3;
Burak Gurdag402dd952019-12-10 20:31:11 +0000386 bool remark_outer_pbits = 4;
387 bool remark_inner_pbits = 5;
388 bool add_inner_tag = 6;
389 bool remove_inner_tag = 7;
390 bool translate_inner_tag = 8;
391 bool translate_outer_tag = 9;
Zack Williams52209662019-02-07 10:15:31 -0700392}
393
394message Action {
395 ActionCmd cmd = 1;
396 fixed32 o_vid = 2;
397 fixed32 o_pbits = 3;
398 fixed32 o_tpid = 4;
399 fixed32 i_vid = 5;
400 fixed32 i_pbits = 6;
401 fixed32 i_tpid = 7;
402}
403
404message Flow {
405 sfixed32 access_intf_id = 1;
406 sfixed32 onu_id = 2;
407 sfixed32 uni_id = 11;
408 fixed32 flow_id = 3;
409 string flow_type = 4; // upstream, downstream, broadcast, multicast
410 sfixed32 alloc_id = 10;
411 sfixed32 network_intf_id = 5;
412 sfixed32 gemport_id = 6;
413 Classifier classifier = 7;
414 Action action = 8;
415 sfixed32 priority = 9;
416 fixed64 cookie = 12; // must be provided for any flow with trap_to_host action. Returned in PacketIndication
417 fixed32 port_no = 13; // must be provided for any flow with trap_to_host action. Returned in PacketIndication
Burak Gurdag402dd952019-12-10 20:31:11 +0000418 fixed32 group_id = 14;
Burak Gurdagce064352020-04-20 20:11:18 +0000419 fixed32 tech_profile_id = 15;
Zack Williams52209662019-02-07 10:15:31 -0700420}
421
Jason Huang55ee29d2020-03-11 23:43:29 +0800422message OnuItuPonAlarm {
Girish Gowdra5192ea82020-05-06 20:49:11 -0700423 enum AlarmID {
424 RDI_ERRORS = 0; // RDI errors
425 }
426
427 enum AlarmReportingCondition {
428 RATE_THRESHOLD = 0; // The alarm is triggered if the stats delta value between samples crosses the configured threshold boundary
429 RATE_RANGE = 1; // The alarm is triggered if the stats delta value between samples deviates from the configured range
430 VALUE_THRESHOLD = 2; // The alarm is raised if the stats sample value becomes greater than this level. The alarm is cleared when the host read the stats
431 }
432
433 message SoakTime {
434 fixed32 active_soak_time = 1;
435 fixed32 clear_soak_time = 2;
436 }
437
438 message RateThresholdConfig {
439 fixed64 rate_threshold_rising = 1;
440 fixed64 rate_threshold_falling = 2;
441 SoakTime soak_time = 3;
442 }
443
444 message RateRangeConfig {
445 fixed64 rate_range_lower = 1;
446 fixed64 rate_range_upper = 2;
447 SoakTime soak_time = 3;
448 }
449
450 message ValueThresholdConfig {
451 fixed64 threshold_limit = 1;
452 SoakTime soak_time = 2;
453 }
454
Jason Huang55ee29d2020-03-11 23:43:29 +0800455 fixed32 pon_ni = 1;
456 fixed32 onu_id = 2;
Girish Gowdra5192ea82020-05-06 20:49:11 -0700457 AlarmID alarm_id = 3;
458 AlarmReportingCondition alarm_reporting_condition = 4;
459 oneof config {
460 RateThresholdConfig rate_threshold_config = 5;
461 RateRangeConfig rate_range_config = 6;
462 ValueThresholdConfig value_threshold_config = 7;
463 }
Jason Huang55ee29d2020-03-11 23:43:29 +0800464}
465
Zack Williams52209662019-02-07 10:15:31 -0700466message SerialNumber {
467 bytes vendor_id = 1;
468 bytes vendor_specific = 2;
469}
470
471message PortStatistics {
472 fixed32 intf_id = 1;
473 fixed64 rx_bytes = 2;
474 fixed64 rx_packets = 3;
475 fixed64 rx_ucast_packets = 4;
476 fixed64 rx_mcast_packets = 5;
477 fixed64 rx_bcast_packets = 6;
478 fixed64 rx_error_packets = 7;
479 fixed64 tx_bytes = 8;
480 fixed64 tx_packets = 9;
481 fixed64 tx_ucast_packets = 10;
482 fixed64 tx_mcast_packets = 11;
483 fixed64 tx_bcast_packets = 12;
484 fixed64 tx_error_packets = 13;
485 fixed64 rx_crc_errors = 14;
486 fixed64 bip_errors = 15;
487 fixed32 timestamp = 16;
488}
489
490message FlowStatistics {
491 fixed32 flow_id = 1;
492 fixed64 rx_bytes = 2;
493 fixed64 rx_packets = 3;
494 fixed64 tx_bytes = 8;
495 fixed64 tx_packets = 9;
496 fixed32 timestamp = 16;
497}
498
499message LosIndication {
500 fixed32 intf_id = 1;
501 string status = 2;
502}
503
504message DyingGaspIndication {
505 fixed32 intf_id = 1;
506 fixed32 onu_id = 2;
507 string status = 3;
508}
509
510message OnuAlarmIndication {
511 fixed32 intf_id = 1;
512 fixed32 onu_id = 2;
513 string los_status = 3;
514 string lob_status = 4;
515 string lopc_miss_status = 5;
516 string lopc_mic_error_status = 6;
Naga Manjunath0a734252019-11-21 19:00:23 +0530517 string lofi_status = 7;
518 string loami_status = 8;
Zack Williams52209662019-02-07 10:15:31 -0700519}
520
521message OnuStartupFailureIndication {
522 fixed32 intf_id = 1;
523 fixed32 onu_id = 2;
524 string status = 3;
525}
526
527message OnuSignalDegradeIndication {
528 fixed32 intf_id = 1;
529 fixed32 onu_id = 2;
530 string status = 3;
531 fixed32 inverse_bit_error_rate = 4;
532}
533
534message OnuDriftOfWindowIndication {
535 fixed32 intf_id = 1;
536 fixed32 onu_id = 2;
537 string status = 3;
538 fixed32 drift = 4;
539 fixed32 new_eqd = 5;
540}
541
542message OnuLossOfOmciChannelIndication {
543 fixed32 intf_id = 1;
544 fixed32 onu_id = 2;
545 string status = 3;
546}
547
548message OnuSignalsFailureIndication {
549 fixed32 intf_id = 1;
550 fixed32 onu_id = 2;
551 string status = 3;
552 fixed32 inverse_bit_error_rate = 4;
553}
554
555message OnuTransmissionInterferenceWarning {
556 fixed32 intf_id = 1;
557 fixed32 onu_id = 2;
558 string status = 3;
559 fixed32 drift = 4;
560}
561
562message OnuActivationFailureIndication {
563 fixed32 intf_id = 1;
564 fixed32 onu_id = 2;
Naga Manjunath0a734252019-11-21 19:00:23 +0530565 fixed32 fail_reason = 3;
566}
567
568message OnuLossOfKeySyncFailureIndication {
569 fixed32 intf_id = 1;
570 fixed32 onu_id = 2;
571 string status = 3;
572}
573
Girish Gowdra5192ea82020-05-06 20:49:11 -0700574message RdiErrorIndication {
575 fixed64 rdi_error_count = 1; // RDI Error count
576 string status = 2; // on/off based on configured reporting condition
577}
578
Naga Manjunath0a734252019-11-21 19:00:23 +0530579message OnuItuPonStatsIndication{
580 fixed32 intf_id = 1;
581 fixed32 onu_id = 2;
Girish Gowdra5192ea82020-05-06 20:49:11 -0700582 oneof stats {
583 RdiErrorIndication rdi_error_ind = 3;
584 // add more here
585 }
Zack Williams52209662019-02-07 10:15:31 -0700586}
587
588message OnuProcessingErrorIndication {
589 fixed32 intf_id = 1;
590 fixed32 onu_id = 2;
591}
592
Devmalya Paulea6eb472020-02-04 20:41:01 -0500593message OnuDeactivationFailureIndication {
594 fixed32 intf_id = 1;
595 fixed32 onu_id = 2;
Girish Gowdra5192ea82020-05-06 20:49:11 -0700596 string status = 3;
Devmalya Paulea6eb472020-02-04 20:41:01 -0500597}
598
Jason Huang55ee29d2020-03-11 23:43:29 +0800599message OnuRemoteDefectIndication {
Devmalya Paulb0c12472020-02-18 20:08:53 -0500600 fixed32 intf_id = 1;
601 fixed32 onu_id = 2;
Jason Huang55ee29d2020-03-11 23:43:29 +0800602 fixed64 rdi_errors = 3;
Devmalya Paulb0c12472020-02-18 20:08:53 -0500603}
604
Devmalya Paul82957962020-03-01 18:49:37 -0500605message OnuLossOfGEMChannelDelineationIndication {
606 fixed32 intf_id = 1;
607 fixed32 onu_id = 2;
608 string status = 3;
609 fixed32 delineation_errors = 4;
610}
611
612message OnuPhysicalEquipmentErrorIndication {
613 fixed32 intf_id = 1;
614 fixed32 onu_id = 2;
615 string status = 3;
616}
617
618message OnuLossOfAcknowledgementIndication {
619 fixed32 intf_id = 1;
620 fixed32 onu_id = 2;
621 string status = 3;
622}
623
Devmalya Paul342bf9d2020-03-19 02:42:56 -0400624message OnuDifferentialReachExceededIndication {
625 fixed32 intf_id = 1;
626 fixed32 onu_id = 2;
627 string status = 3;
628 fixed32 distance = 4;
629}
630
Burak Gurdag402dd952019-12-10 20:31:11 +0000631message GroupMember {
632 enum InterfaceType {
633 PON = 0;
634 EPON_1G_PATH = 1;
635 EPON_10G_PATH = 2;
636 }
637 uint32 interface_id = 1;
638 InterfaceType interface_type = 2;
639 uint32 gem_port_id = 3;
640 uint32 priority = 4; // Priority (and also the ID) of the default fixed queue for the multicast traffic.
641 // This queue is attached to the default PON port scheduler.
642}
643
644message Group {
645 enum GroupMembersCommand {
646 ADD_MEMBERS = 0;
647 REMOVE_MEMBERS = 1;
648 SET_MEMBERS = 2;
649 }
650
651 uint32 group_id = 1;
652 GroupMembersCommand command = 2;
653 repeated GroupMember members = 3;
654 Action action = 4;
655}
656
Dinesh Belwalkared6da5e2020-02-25 11:23:57 -0800657message ValueParam {
658 Onu onu = 1;
659 common.ValueType.Type value = 2;
660}
Burak Gurdag402dd952019-12-10 20:31:11 +0000661
Zack Williams52209662019-02-07 10:15:31 -0700662message Empty {}
Burak Gurdag402dd952019-12-10 20:31:11 +0000663