package
0.44.0
Repository: https://github.com/donnol/tools.git
Documentation: pkg.go.dev

# Functions

No description provided by the author
No description provided by the author

# Variables

mock结构体字段名称后缀.

# Structs

Ioc 控制反转,Inversion of Control.
每个包、每个接口、每个方法唯一对应一个方法.

# Interfaces

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Proxy 在层间依赖调用时插入钩子调用,类似AOP.

# Type aliases

No description provided by the author
No description provided by the author
CtxFunc 对于method: func(string, int) (int, error) f := method.(func(string, int) (int, error)) a1 := args[0].(string) a2 := args[1].(int) r1, r2 := f(a1, a2) res = append(res, r1, r2).