(ctx *gin.Context, input *system_apikey_dto.Create)
| 27 | } |
| 28 | |
| 29 | func (i *imlAPIKeyController) Create(ctx *gin.Context, input *system_apikey_dto.Create) error { |
| 30 | return i.apikeyModule.Create(ctx, input) |
| 31 | } |
| 32 | |
| 33 | func (i *imlAPIKeyController) Update(ctx *gin.Context, id string, input *system_apikey_dto.Update) error { |
| 34 | return i.apikeyModule.Update(ctx, id, input) |