-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
22 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,15 @@ | ||
format: jb-book | ||
root: index.md | ||
chapters: | ||
- file: general.md | ||
- file: web_server/README.md | ||
parts: | ||
- caption: 原则 | ||
chapters: | ||
- file: principles/README.md | ||
- caption: 客户端 | ||
chapters: | ||
- file: sdk/README.md | ||
sections: | ||
- file: sdk/api_client.md | ||
- file: cli/README.md | ||
- caption: 服务端 | ||
chapters: | ||
- file: server/README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# 命令行工具 | ||
|
||
使用[`typer`](https://typer.tiangolo.com)作为主要的命令行开发框架。 | ||
标准库`argparse`(`optparse`已废弃)、第三方库`click`等作为备选框架。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# 基本规则 | ||
# 原则 | ||
|
||
## 项目结构 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# 云SDK类Python依赖 | ||
# SDK | ||
|
||
## 预期特性 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# 服务端 | ||
|
||
使用FastAPI作为首选框架。Django和Flask作为备选框架。 |
This file was deleted.
Oops, something went wrong.