(stackName string)
| 52 | } |
| 53 | |
| 54 | func (actor *Actor) GetStackLabels(stackName string) (map[string]types.NullString, Warnings, error) { |
| 55 | resource, warnings, err := actor.GetStackByName(stackName) |
| 56 | return actor.extractLabels(resource.Metadata, warnings, err) |
| 57 | } |
| 58 | |
| 59 | func (actor *Actor) GetBuildpackLabels(buildpackName string, buildpackStack string, buildpackLifecycle string) (map[string]types.NullString, Warnings, error) { |
| 60 | resource, warnings, err := actor.GetBuildpackByNameAndStackAndLifecycle(buildpackName, buildpackStack, buildpackLifecycle) |
nothing calls this directly
no test coverage detected