Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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