(octopus *octopusApiClient.Client, projectIdentifier string)
| 18 | } |
| 19 | |
| 20 | func FindProject(octopus *octopusApiClient.Client, projectIdentifier string) (*projects.Project, error) { |
| 21 | project, err := octopus.Projects.GetByIdentifier(projectIdentifier) |
| 22 | if err != nil { |
| 23 | return nil, err |
| 24 | } |
| 25 | |
| 26 | return project, nil |
| 27 | } |
no outgoing calls
no test coverage detected