Skip to content

Commit

Permalink
feat:更新说明文档
Browse files Browse the repository at this point in the history
  • Loading branch information
convee committed Mar 3, 2023
1 parent 73f3dca commit 7ce4fb5
Showing 1 changed file with 15 additions and 5 deletions.
20 changes: 15 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,25 @@ Artgo 简单的Web框架
* 分组路由
* 多种请求方式
* 模板
* 参数绑定和校验

## 目录结构

```shell
.
├── art.go #框架核心
├── context.go #上下文
├── middleware.go #中间件
├── render.go #渲染模板
└── router.go #路由
├── README.md
├── art.go #框架核心
├── binding.go #参数绑定
├── binding_test.go
├── context.go #上下文
├── go.mod
├── go.sum
├── middleware.go # 中间件
├── render.go #数据渲染
├── router.go #路由
├── trie.go #前缀树路由
├── validator.go #参数校验
└── vars.go #变量定义


```

0 comments on commit 7ce4fb5

Please sign in to comment.