aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/LocalApi.js
blob: e2a46874a531b3e60c4b8c7cf8a8003ec99aecd6 (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();
  }

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