aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/LocalApi.js
blob: 74191710495145cee9d4129068c4581f13f15890 (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() {
    return this.local.getAppSettings();
  }

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

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

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