nav.js 706 B

123456789101112131415161718
  1. module.exports = {
  2. text: 'mirai-api-http',
  3. items: [
  4. { text: "首页", link: "/" },
  5. { text: "API", link: "/api/API.html" },
  6. { text: "事件类型", link: "/api/EventType.html" },
  7. { text: "消息类型", link: "/api/MessageType.html" },
  8. {
  9. text: "接口适配器",
  10. items: [
  11. { text: "http轮询", link: "/adapter/HttpAdapter.html" },
  12. { text: "websocket", link: "/adapter/WebsocketAdapter.html" },
  13. { text: "反向websocket", link: "/adapter/ReverseWebsocketAdapter.html" },
  14. { text: "webhook上报", link: "/adapter/WebhookAdapter.html" },
  15. ],
  16. },
  17. ],
  18. };