()
| 19 | type ColoringFunction func(value string, row int, col int) string |
| 20 | |
| 21 | func NotLoggedInText() string { |
| 22 | return T("Not logged in. Use '{{.CFLoginCommand}}' or '{{.CFLoginCommandSSO}}' to log in.", map[string]interface{}{"CFLoginCommand": CommandColor(cf.Name + " " + "login"), |
| 23 | "CFLoginCommandSSO": CommandColor(cf.Name + " " + "login --sso")}) |
| 24 | } |
| 25 | |
| 26 | //go:generate go run github.com/maxbrunsfeld/counterfeiter/v6 . UI |
| 27 | type UI interface { |
no test coverage detected