aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/LocalApi.js
blob: 3f84f8a0b18ad9db63badcc590e04f24251ba52d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
export default class LocalApi {
  constructor(server, local) {
    this.server = server;
    this.local = local;
  }

  getSettings() {
    return this.local.getAppSettings();
  }

  updateSettings(data) {
    return this.local.updateAppSettings(data);
  }

  removeKey(key) {
    return this.local.removeKey(key);
  }

  getAppCacheSize() {
    return this.local.getAppCacheSize();
  }

  clearAppCache() {
    return this.local.clearAppCache();
  }
}