| 88 | } |
| 89 | |
| 90 | type Pipeline struct { |
| 91 | ID string `json:"id"` |
| 92 | Name string `json:"name"` |
| 93 | Type PipelineType `json:"type"` |
| 94 | Enabled bool `json:"enabled"` |
| 95 | Status PipelineStatus `json:"status"` |
| 96 | RepositoryEmbeddings *RepositoryEmbeddings `json:"repositoryEmbeddings,omitempty"` |
| 97 | } |
| 98 | |
| 99 | type PipelineExecution struct { |
| 100 | ID string `json:"id"` |
nothing calls this directly
no outgoing calls
no test coverage detected