Per-style guide: https://github.com/cloudfoundry/cli/wiki/CF-CLI-Style-Guide#system-feedback--transparency
(appName, orgName, spaceName, userName string)
| 239 | |
| 240 | // Per-style guide: https://github.com/cloudfoundry/cli/wiki/CF-CLI-Style-Guide#system-feedback--transparency |
| 241 | func AppInOrgSpaceAsUser(appName, orgName, spaceName, userName string) Line { |
| 242 | return Line{`app %s in org %s / space %s as %s`, []interface{}{appName, orgName, spaceName, userName}} |
| 243 | } |
| 244 | |
| 245 | // Per-style guide: https://github.com/cloudfoundry/cli/wiki/CF-CLI-Style-Guide#keyvalue-pairs |
| 246 | func KeyValue(key, value string) Line { |
no outgoing calls
no test coverage detected