(ctx *gin.Context, input *system_apikey_dto.Create)
| 10 | |
| 11 | type IAPIKeyController interface { |
| 12 | Create(ctx *gin.Context, input *system_apikey_dto.Create) error |
| 13 | Update(ctx *gin.Context, id string, input *system_apikey_dto.Update) error |
| 14 | Delete(ctx *gin.Context, id string) error |
| 15 | Get(ctx *gin.Context, id string) (*system_apikey_dto.APIKey, error) |
no outgoing calls
no test coverage detected