summaryrefslogtreecommitdiffstats
path: root/src/api/AppApi.ts
blob: 6e5e5c806e8b60eeadc1deb8774e3ef7e1692317 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
export default class AppApi {
  server: any;

  constructor(server: any) {
    this.server = server;
  }

  health() {
    return this.server.healthCheck();
  }
}