(ctx *gin.Context, providerId string, id string, input *ai_key_dto.Edit)
| 11 | type IKeyController interface { |
| 12 | Create(ctx *gin.Context, providerId string, input *ai_key_dto.Create) error |
| 13 | Edit(ctx *gin.Context, providerId string, id string, input *ai_key_dto.Edit) error |
| 14 | Delete(ctx *gin.Context, providerId string, id string) error |
| 15 | Get(ctx *gin.Context, providerId string, id string) (*ai_key_dto.Key, error) |
| 16 | List(ctx *gin.Context, providerId string, keyword string, page string, pageSize string, statuses string) ([]*ai_key_dto.Item, int64, error) |
no outgoing calls
no test coverage detected