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 212B

123456789
  1. const HealthRoute = require('../routes/health/get')
  2. module.exports = {
  3. name: 'health-plugin',
  4. version: '1.0.0',
  5. register: async (server, options) => {
  6. await server.route(HealthRoute)
  7. },
  8. }