您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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