mirror of
https://github.com/google/bumble.git
synced 2026-04-16 00:25:31 +00:00
Squashed commits: [6b97b93] add gRPC publish support for netsim [439717b] fix doc [5f679d7] fix linting and type errors [ca7b734] merge 2 [f29c909] update docs [7800ef9] cleanup (+5 squashed commits) Squashed commits: [c501eac] update to latest protos [e51a3fb] wip [d6a58fc] wip [eaa9fa6] wip [68d9490] wip wip wip wip update to latest protos cleanup
13 lines
370 B
Python
13 lines
370 B
Python
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
from google.protobuf import descriptor as _descriptor
|
|
from typing import ClassVar as _ClassVar
|
|
|
|
BLUETOOTH: ChipKind
|
|
DESCRIPTOR: _descriptor.FileDescriptor
|
|
UNSPECIFIED: ChipKind
|
|
UWB: ChipKind
|
|
WIFI: ChipKind
|
|
|
|
class ChipKind(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
__slots__ = []
|