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

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

  updateAppSettings(type, data) {
    return this.local.updateAppSettings(type, data);
  }

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

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