()
| 30 | } |
| 31 | |
| 32 | func init() { |
| 33 | autowire.Auto[IProviderModule](func() reflect.Value { |
| 34 | module := new(imlProviderModule) |
| 35 | gateway.RegisterInitHandleFunc(module.initGateway) |
| 36 | return reflect.ValueOf(module) |
| 37 | }) |
| 38 | |
| 39 | autowire.Auto[IAIAPIModule](func() reflect.Value { |
| 40 | return reflect.ValueOf(new(imlAIApiModule)) |
| 41 | }) |
| 42 | } |
nothing calls this directly
no test coverage detected