(space *spaces.Space)
| 104 | } |
| 105 | |
| 106 | func getTaskQueueStatusColored(space *spaces.Space) string { |
| 107 | if space.TaskQueueStopped { |
| 108 | return output.Yellow("Stopped") |
| 109 | } |
| 110 | return output.Green("Running") |
| 111 | } |
| 112 | |
| 113 | func generateWebUrl(host string, space *spaces.Space) string { |
| 114 | link := strings.Split(space.Links["Web"], "/app#/") |
no test coverage detected