Coverage for src / mysingle / protos / common / __init__.py: 0%

3 statements  

« prev     ^ index     » next       coverage.py v7.12.0, created at 2025-12-02 00:58 +0900

1"""Common proto messages.""" 

2 

3# Import well-known types first to ensure they're loaded in the descriptor pool 

4from google.protobuf import struct_pb2 # noqa: F401 

5 

6from . import error_pb2, metadata_pb2, pagination_pb2 

7 

8__all__ = [ 

9 "error_pb2", 

10 "metadata_pb2", 

11 "pagination_pb2", 

12]