diff options
Diffstat (limited to 'components/bluetooth_traits/lib.rs')
-rw-r--r-- | components/bluetooth_traits/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/bluetooth_traits/lib.rs b/components/bluetooth_traits/lib.rs index dcff8cead91..a1b1b41be6e 100644 --- a/components/bluetooth_traits/lib.rs +++ b/components/bluetooth_traits/lib.rs @@ -86,5 +86,6 @@ pub enum BluetoothMethodMsg { GetDescriptors(String, Option<String>, IpcSender<BluetoothResult<BluetoothDescriptorsMsg>>), ReadValue(String, IpcSender<BluetoothResult<Vec<u8>>>), WriteValue(String, Vec<u8>, IpcSender<BluetoothResult<bool>>), + Test(String, IpcSender<BluetoothResult<()>>), Exit, } |