(ctx context.Context, serviceId string, input *ai_api_dto.CreateAPI)
| 10 | |
| 11 | type IAPIModule interface { |
| 12 | Create(ctx context.Context, serviceId string, input *ai_api_dto.CreateAPI) error |
| 13 | Edit(ctx context.Context, serviceId string, apiId string, input *ai_api_dto.EditAPI) error |
| 14 | Delete(ctx context.Context, serviceId string, apiId string) error |
| 15 | List(ctx context.Context, keyword, serviceId string) ([]*ai_api_dto.APIItem, error) |
no outgoing calls
no test coverage detected