aboutsummaryrefslogtreecommitdiffstats
path: root/src/api/AppApi.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/api/AppApi.js')
-rw-r--r--src/api/AppApi.js9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/api/AppApi.js b/src/api/AppApi.js
new file mode 100644
index 000000000..411c187f4
--- /dev/null
+++ b/src/api/AppApi.js
@@ -0,0 +1,9 @@
1export default class AppApi {
2 constructor(server) {
3 this.server = server;
4 }
5
6 health() {
7 return this.server.healthCheck();
8 }
9}