| 16 | var _ IStrategyService = (*imlStrategyService)(nil) |
| 17 | |
| 18 | type imlStrategyService struct { |
| 19 | store strategy.IStrategyStore `autowired:""` |
| 20 | commitService commit.ICommitService[Commit] `autowired:""` |
| 21 | universally.IServiceCreate[Create] |
| 22 | universally.IServiceEdit[Edit] |
| 23 | } |
| 24 | |
| 25 | func (i *imlStrategyService) All(ctx context.Context, scope int, target string) ([]*Strategy, error) { |
| 26 | w := make(map[string]interface{}) |
nothing calls this directly
no outgoing calls
no test coverage detected