1
0
forked from dyf/APP
Files
APP/utils/BleReceive.js
2025-08-18 08:38:28 +08:00

21 lines
272 B
JavaScript

class BleReceive {
constructor() {
this.StorageKey = "linkedDevices";
}
}
let instance = null;
export default {
getBleReceive: function(found, receive) {
if (!instance) {
instance = new BleReceive();
}
return instance;
}
}