Coverage for src/bluetooth_sig/registry/service_discovery/__init__.py: 100%
3 statements
« prev ^ index » next coverage.py v7.14.3, created at 2026-06-28 01:26 +0000
« prev ^ index » next coverage.py v7.14.3, created at 2026-06-28 01:26 +0000
1"""Service discovery registries from assigned_numbers/service_discovery/.
3This module contains registries for SDP (Service Discovery Protocol) attribute
4identifiers and protocol parameters loaded from the Bluetooth SIG assigned
5numbers YAML files.
6"""
8from __future__ import annotations
10from .attribute_ids import (
11 ServiceDiscoveryAttributeRegistry,
12 get_service_discovery_attribute_registry,
13)
15__all__ = [
16 "ServiceDiscoveryAttributeRegistry",
17 "get_service_discovery_attribute_registry",
18]