(client *client.Client, identifier string)
| 146 | } |
| 147 | |
| 148 | func GetProject(client *client.Client, identifier string) (*projects.Project, error) { |
| 149 | res, err := client.Projects.GetByIdentifier(identifier) |
| 150 | if err != nil { |
| 151 | return nil, err |
| 152 | } |
| 153 | |
| 154 | return res, nil |
| 155 | } |
| 156 | |
| 157 | func GetAllLibraryVariableSets(client *client.Client) ([]*variables.LibraryVariableSet, error) { |
| 158 | res, err := client.LibraryVariableSets.GetAll() |
no outgoing calls
no test coverage detected