Skip to content

Commit

Permalink
Update guide/structure
Browse files Browse the repository at this point in the history
  • Loading branch information
photino committed Apr 21, 2023
1 parent 8bd4db9 commit fdfa6bb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
- [身份认证](./advanced/authentication.md)
- [调度任务](./advanced/schedule.md)
- [消息订阅](./advanced/channel.md)
- [可观察性](./advanced/trace.md)
- [可观测性](./advanced/trace.md)
- [辅助函数](./advanced/extension.md)
- [可选功能](./features.md)
- [ORM](./features/orm.md)
Expand Down
2 changes: 1 addition & 1 deletion src/advanced/trace.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# 可观察性
# 可观测性
4 changes: 4 additions & 0 deletions src/guide/structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ axum-app
│ │ ├─ task.rs
│ │ └─ user.rs
│ ├─ main.rs
│ ├─ middleware
│ │ ├─ mod.rs
│ │ └─ access.rs
│ ├─ router
│ │ └─ mod.rs
│ ├─ schedule
Expand All @@ -50,6 +53,7 @@ axum-app
* `logs/`用于日志文件输出。
* `src/controller/`用于编写控制器。
* `src/main.rs`用于启动应用。
* `src/middleware/`用于编写中间件。
* `src/router/`用于配置URL路由规则。
* `src/schedule/`用于编写定时任务。
* `src/service/`用于编写业务逻辑层。
Expand Down

0 comments on commit fdfa6bb

Please sign in to comment.