📝 [docs]: 重新更改开发文档侧边栏顺序

This commit is contained in:
snowykami 2024-09-01 15:31:22 +08:00
parent bdc32b26fe
commit 77b77c285b
5 changed files with 20 additions and 7 deletions

View File

@ -10,7 +10,7 @@ export const en = defineConfig({
{text: 'Deploy', link: '/en/deploy/install'}, {text: 'Deploy', link: '/en/deploy/install'},
{text: 'Usage', link: '/en/usage/basic'}, {text: 'Usage', link: '/en/usage/basic'},
{text: 'Extension', link: '/en/store/resource'}, {text: 'Extension', link: '/en/store/resource'},
{text: 'Develop', link: '/en/dev/api'}, {text: 'Develop', link: '/en/dev/guide'},
], ],
docFooter: { docFooter: {
prev: 'Prev Page', prev: 'Prev Page',

View File

@ -10,7 +10,7 @@ export const zh = defineConfig({
{text: '部署', link: '/deploy/install'}, {text: '部署', link: '/deploy/install'},
{text: '使用', link: '/usage/basic'}, {text: '使用', link: '/usage/basic'},
{text: '扩展', link: '/store/resource'}, {text: '扩展', link: '/store/resource'},
{text: '开发', link: '/dev/api'}, {text: '开发', link: '/dev/guide'},
], ],
docFooter: { docFooter: {
prev: '上一页', prev: '上一页',

View File

@ -1,3 +1,11 @@
"""
---
title: liteyuki API
order: 100
---
此模块为liteyuki的框架整体
This module is the overall framework of liteyuki.
"""
from liteyuki.bot import ( from liteyuki.bot import (
LiteyukiBot, LiteyukiBot,
get_bot, get_bot,

View File

@ -0,0 +1,5 @@
# -*- coding: utf-8 -*-
"""
此模块为内置插件文件夹用于存放内置插件
This module is the built-in plugin folder, used to store built-in plugins.
"""