選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }