| OLD | NEW |
| (Empty) |
| 1 # Generated by the protocol buffer compiler. DO NOT EDIT! | |
| 2 # source: timestamp.proto | |
| 3 | |
| 4 import sys | |
| 5 _b=sys.version_info[0]<3 and (lambda x:x) or (lambda x:x.encode('latin1')) | |
| 6 from google.protobuf import descriptor as _descriptor | |
| 7 from google.protobuf import message as _message | |
| 8 from google.protobuf import reflection as _reflection | |
| 9 from google.protobuf import symbol_database as _symbol_database | |
| 10 from google.protobuf import descriptor_pb2 | |
| 11 # @@protoc_insertion_point(imports) | |
| 12 | |
| 13 _sym_db = _symbol_database.Default() | |
| 14 | |
| 15 | |
| 16 | |
| 17 | |
| 18 DESCRIPTOR = _descriptor.FileDescriptor( | |
| 19 name='timestamp.proto', | |
| 20 package='ts_mon.proto', | |
| 21 serialized_pb=_b('\n\x0ftimestamp.proto\x12\x0cts_mon.proto\"+\n\tTimestamp\x1
2\x0f\n\x07seconds\x18\x01 \x01(\x03\x12\r\n\x05nanos\x18\x02 \x01(\x05') | |
| 22 ) | |
| 23 _sym_db.RegisterFileDescriptor(DESCRIPTOR) | |
| 24 | |
| 25 | |
| 26 | |
| 27 | |
| 28 _TIMESTAMP = _descriptor.Descriptor( | |
| 29 name='Timestamp', | |
| 30 full_name='ts_mon.proto.Timestamp', | |
| 31 filename=None, | |
| 32 file=DESCRIPTOR, | |
| 33 containing_type=None, | |
| 34 fields=[ | |
| 35 _descriptor.FieldDescriptor( | |
| 36 name='seconds', full_name='ts_mon.proto.Timestamp.seconds', index=0, | |
| 37 number=1, type=3, cpp_type=2, label=1, | |
| 38 has_default_value=False, default_value=0, | |
| 39 message_type=None, enum_type=None, containing_type=None, | |
| 40 is_extension=False, extension_scope=None, | |
| 41 options=None), | |
| 42 _descriptor.FieldDescriptor( | |
| 43 name='nanos', full_name='ts_mon.proto.Timestamp.nanos', index=1, | |
| 44 number=2, type=5, cpp_type=1, label=1, | |
| 45 has_default_value=False, default_value=0, | |
| 46 message_type=None, enum_type=None, containing_type=None, | |
| 47 is_extension=False, extension_scope=None, | |
| 48 options=None), | |
| 49 ], | |
| 50 extensions=[ | |
| 51 ], | |
| 52 nested_types=[], | |
| 53 enum_types=[ | |
| 54 ], | |
| 55 options=None, | |
| 56 is_extendable=False, | |
| 57 extension_ranges=[], | |
| 58 oneofs=[ | |
| 59 ], | |
| 60 serialized_start=33, | |
| 61 serialized_end=76, | |
| 62 ) | |
| 63 | |
| 64 DESCRIPTOR.message_types_by_name['Timestamp'] = _TIMESTAMP | |
| 65 | |
| 66 Timestamp = _reflection.GeneratedProtocolMessageType('Timestamp', (_message.Mess
age,), dict( | |
| 67 DESCRIPTOR = _TIMESTAMP, | |
| 68 __module__ = 'timestamp_pb2' | |
| 69 # @@protoc_insertion_point(class_scope:ts_mon.proto.Timestamp) | |
| 70 )) | |
| 71 _sym_db.RegisterMessage(Timestamp) | |
| 72 | |
| 73 | |
| 74 # @@protoc_insertion_point(module_scope) | |
| OLD | NEW |