main
1/// Utility import that only exposes the bluetooth backend services that should be used.
2library;
3
4export 'package:blood_pressure_app/features/bluetooth/backend/bluetooth_device.dart' show BluetoothDevice;
5export 'package:blood_pressure_app/features/bluetooth/backend/bluetooth_manager.dart' show BluetoothManager;
6export 'package:blood_pressure_app/features/bluetooth/backend/bluetooth_state.dart' show BluetoothAdapterState;
7
8/// All available bluetooth backends
9enum BluetoothBackend {
10 /// Bluetooth Low Energy backend
11 bluetoothLowEnergy,
12 /// Flutter Blue Plus backend
13 flutterBluePlus,
14 /// Mock backend
15 mock;
16}