| 31 | ) |
| 32 | |
| 33 | type imlSubscribeModule struct { |
| 34 | serviceService service.IServiceService `autowired:""` |
| 35 | subscribeService subscribe.ISubscribeService `autowired:""` |
| 36 | subscribeApplyService subscribe.ISubscribeApplyService `autowired:""` |
| 37 | clusterService cluster.IClusterService `autowired:""` |
| 38 | transaction store.ITransaction `autowired:""` |
| 39 | } |
| 40 | |
| 41 | func (i *imlSubscribeModule) ExistSubscriber(ctx context.Context, serviceId string, app string) error { |
| 42 | _, err := i.subscribeService.GetByServiceAndApplication(ctx, serviceId, app) |
nothing calls this directly
no outgoing calls
no test coverage detected