| 42 | var _ IStrategyModule = (*imlStrategyModule)(nil) |
| 43 | |
| 44 | type imlStrategyModule struct { |
| 45 | strategyService strategy.IStrategyService `autowired:""` |
| 46 | appService service.IServiceService `autowired:""` |
| 47 | logService log2.ILogService `autowired:""` |
| 48 | clusterService cluster.IClusterService `autowired:""` |
| 49 | transaction store.ITransaction `autowired:""` |
| 50 | } |
| 51 | |
| 52 | func (i *imlStrategyModule) StrategyLogInfo(ctx context.Context, id string) (*strategy_dto.LogInfo, error) { |
| 53 | c, err := i.clusterService.Get(ctx, cluster.DefaultClusterID) |
nothing calls this directly
no outgoing calls
no test coverage detected