| 32 | var _ IAPIKeyModule = new(imlAPIKeyModule) |
| 33 | |
| 34 | type imlAPIKeyModule struct { |
| 35 | apikeyService system_apikey.IAPIKeyService `autowired:""` |
| 36 | clusterServer cluster.IClusterService `autowired:""` |
| 37 | teamMemberService team_member.ITeamMemberService `autowired:""` |
| 38 | serviceService service.IServiceService `autowired:""` |
| 39 | applicationAuthorizationService application_authorization.IAuthorizationService `autowired:""` |
| 40 | subscribeService subscribe.ISubscribeService `autowired:""` |
| 41 | transaction store.ITransaction `autowired:""` |
| 42 | } |
| 43 | |
| 44 | func (i *imlAPIKeyModule) MyAPIKeysByApp(ctx context.Context, appId string) ([]*system_apikey_dto.AuthorizationItem, error) { |
| 45 | appInfo, err := i.serviceService.Get(ctx, appId) |
nothing calls this directly
no outgoing calls
no test coverage detected