(ctx context.Context, input *system_apikey_dto.Create)
| 12 | |
| 13 | type IAPIKeyModule interface { |
| 14 | Create(ctx context.Context, input *system_apikey_dto.Create) error |
| 15 | Update(ctx context.Context, id string, input *system_apikey_dto.Update) error |
| 16 | Delete(ctx context.Context, id string) error |
| 17 | Get(ctx context.Context, id string) (*system_apikey_dto.APIKey, error) |
no outgoing calls
no test coverage detected