Kaynağa Gözat

VuePress build settings

Karlatemp 4 yıl önce
ebeveyn
işleme
4c37f81cc2
1 değiştirilmiş dosya ile 18 ekleme ve 0 silme
  1. 18 0
      docs/.conf/nav.js

+ 18 - 0
docs/.conf/nav.js

@@ -0,0 +1,18 @@
+module.exports = {
+    text: 'mirai-api-http',
+    items: [
+        { text: "首页", link: "/" },
+        { text: "API", link: "/api/API.html" },
+        { text: "事件类型", link: "/api/EventType.html" },
+        { text: "消息类型", link: "/api/MessageType.html" },
+        {
+            text: "接口适配器",
+            items: [
+                { text: "http轮询", link: "/adapter/HttpAdapter.html" },
+                { text: "websocket", link: "/adapter/WebsocketAdapter.html" },
+                { text: "反向websocket", link: "/adapter/ReverseWebsocketAdapter.html" },
+                { text: "webhook上报", link: "/adapter/WebhookAdapter.html" },
+            ],
+        },
+    ],
+};