()
| 16 | } |
| 17 | |
| 18 | func init() { |
| 19 | logModule := new(imlLogModule) |
| 20 | |
| 21 | autowire.Auto[ILogModule](func() reflect.Value { |
| 22 | |
| 23 | gateway.RegisterInitHandleFunc(logModule.initGateway) |
| 24 | return reflect.ValueOf(logModule) |
| 25 | }) |
| 26 | } |
nothing calls this directly
no test coverage detected