()
| 44 | } |
| 45 | |
| 46 | func init() { |
| 47 | authModule := new(imlAuthorizationModule) |
| 48 | autowire.Auto[IAuthorizationModule](func() reflect.Value { |
| 49 | gateway.RegisterInitHandleFunc(authModule.initGateway) |
| 50 | return reflect.ValueOf(authModule) |
| 51 | }) |
| 52 | |
| 53 | autowire.Auto[IExportAuthorizationModule](func() reflect.Value { |
| 54 | return reflect.ValueOf(authModule) |
| 55 | }) |
| 56 | } |
nothing calls this directly
no test coverage detected