Coverage for src/bluetooth_sig/registry/__init__.py: 100%

10 statements  

« prev     ^ index     » next       coverage.py v7.11.0, created at 2025-10-30 00:10 +0000

1"""Registry module for Bluetooth SIG data.""" 

2 

3from bluetooth_sig.registry.base import BaseRegistry 

4from bluetooth_sig.registry.browse_groups import browse_groups_registry 

5from bluetooth_sig.registry.declarations import declarations_registry 

6from bluetooth_sig.registry.members import members_registry 

7from bluetooth_sig.registry.mesh_profiles import mesh_profiles_registry 

8from bluetooth_sig.registry.object_types import object_types_registry 

9from bluetooth_sig.registry.sdo_uuids import sdo_uuids_registry 

10from bluetooth_sig.registry.service_classes import service_classes_registry 

11from bluetooth_sig.registry.units import units_registry 

12 

13__all__ = [ 

14 "BaseRegistry", 

15 "browse_groups_registry", 

16 "declarations_registry", 

17 "members_registry", 

18 "mesh_profiles_registry", 

19 "object_types_registry", 

20 "sdo_uuids_registry", 

21 "service_classes_registry", 

22 "units_registry", 

23]