aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/LocalApi.js
blob: 59d7d8fa29f05ceba258163a400b5c106d62883b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export default class LocalApi {
  constructor(server, local) {
    this.server = server;
    this.local = local;
  }

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

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