Skip to content

Commit

Permalink
update doc
Browse files Browse the repository at this point in the history
  • Loading branch information
dengsgo committed Sep 3, 2023
1 parent 6cccc5d commit a3359e5
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions example/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
## example

这个目录示范了如何正确编写代码来使用 go-decorator 工具。
这个目录示范了如何正确编写代码来使用 go-decorator 工具。

| Project | Notes |
|-----------------------------------|-----------------------------------------------------------|
| [**single**](example/single) | 这个一个单文件示例,装饰器定义和被装饰的函数都位于一个包内。这种情况无需考虑导入依赖包的问题,按示例代码使用即可。 |
| [**packages**](example/packages) | 该项目示例为装饰器定义和被装饰的函数不在同一个包内,需要使用匿名包导入。 |
| [**datetime**](example/datetime) | Guide 里演示示例所用到的完整代码 |
| [**emptyfunc**](example/emptyfunc) | 演示装饰器中调用和不调用`TargetDo()` 的区别 |

**single**: 这个一个单文件示例,装饰器定义和被装饰的函数都位于一个包内。这种情况无需考虑导入依赖包的问题,按示例代码使用即可。

**packages**:该项目示例为装饰器定义和被装饰的函数不在同一个包内,需要明确表明导入相关包来帮助工具编译时导入。

0 comments on commit a3359e5

Please sign in to comment.