You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

16 lines
329 B

/**
* @exports {AppStorage}
*/
import { AppStorage } from './class';
let EV = require('./events');
let BlueApp = new AppStorage();
(async () => {
await BlueApp.loadFromDisk();
console.log('loaded from disk');
EV(EV.enum.WALLETS_COUNT_CHANGED);
EV(EV.enum.TRANSACTIONS_COUNT_CHANGED);
})();
module.exports = BlueApp;