You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

health.js 269B

123456789101112
  1. const Schmervice = require('@hapipal/schmervice')
  2. module.exports = class HealthService extends Schmervice.Service {
  3. constructor(...args){
  4. super(...args)
  5. }
  6. getStats(){
  7. const date = new Date()
  8. return { date: date.toString() }
  9. }
  10. }