(client *client.Client, runbook *runbooks.Runbook, gitRef string)
| 139 | } |
| 140 | |
| 141 | func DeleteGitRunbook(client *client.Client, runbook *runbooks.Runbook, gitRef string) error { |
| 142 | err := runbooks.DeleteGitRunbook(client, runbook.SpaceID, runbook.ProjectID, gitRef, runbook.ID) |
| 143 | if err != nil { |
| 144 | return err |
| 145 | } |
| 146 | |
| 147 | return nil |
| 148 | } |
| 149 | |
| 150 | func GetAllProjects(client *client.Client) ([]*projects.Project, error) { |
| 151 | res, err := client.Projects.GetAll() |
no outgoing calls
no test coverage detected