Refactor app initialization logic

This commit is contained in:
trevor-signal 2025-02-12 13:37:30 -05:00 committed by GitHub
commit 4c3db76bde
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
17 changed files with 394 additions and 582 deletions

View file

@ -37,6 +37,7 @@ global.window = {
storage: {
get: key => storageMap.get(key),
put: async (key, value) => storageMap.set(key, value),
remove: async key => storageMap.clear(key),
},
};