const HealthRoute = require('../routes/health/get') const HealthService = require('../services/health') module.exports = { name: 'health-plugin', version: '1.0.0', register: async (server, options) => { await server.registerService(HealthService) await server.route(HealthRoute) }, }