aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/AppApi.js
blob: 411c187f485437ad3041a8efc611b5037fdc3648 (plain) (blame)
1
2
3
4
5
6
7
8
9
export default class AppApi {
  constructor(server) {
    this.server = server;
  }

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