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.

example.js 232B

12345678910
  1. const example = require('../routes/example/base')
  2. module.exports = {
  3. name: 'myPlugin',
  4. version: '1.0.0',
  5. register: async (server, options) => {
  6. // Create a route for example
  7. server.route(example)
  8. }
  9. }