(ctx context.Context, id string, input *system_apikey_dto.Update)
| 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) |
| 18 | Search(ctx context.Context, keyword string) ([]*system_apikey_dto.Item, error) |
no outgoing calls
no test coverage detected