(queryParams map[string]string)
| 380 | } |
| 381 | |
| 382 | func mapToQueryString(queryParams map[string]string) string { |
| 383 | params := make([]string, 0) |
| 384 | for k, v := range queryParams { |
| 385 | params = append(params, k+"="+v) |
| 386 | } |
| 387 | return strings.Join(params, "&") |
| 388 | } |
| 389 | |
| 390 | // MonitorPipeline FIXME |
| 391 | func (d *DevlakeClient) monitorPipeline(id uint64) models.Pipeline { |
no outgoing calls
no test coverage detected