This repository has been archived on 2023-08-24. You can view files and clone it, but cannot push or open issues or pull requests.
OwlBoard/src/services/kube.services.js

12 lines
205 B
JavaScript
Raw Normal View History

2022-12-19 22:26:51 +00:00
async function getAlive(){
return {code: 200, state: {state: "alive",noise: "twit-twoo"}}
}
2022-12-19 18:38:57 +00:00
async function getReady(){
return "not_implemented";
};
module.exports = {
2022-12-19 22:26:51 +00:00
getAlive,
2022-12-19 18:38:57 +00:00
getReady
}