(cli *cli)
| 39 | } |
| 40 | |
| 41 | func getLogin(cli *cli) string { |
| 42 | if !cli.Config.IsLoggedInWithTenant(cli.tenant) { |
| 43 | return ansi.Italic(` |
| 44 | Before using the CLI, you'll need to login: |
| 45 | |
| 46 | $ auth0 login |
| 47 | `) |
| 48 | } |
| 49 | |
| 50 | return "" |
| 51 | } |
| 52 | |
| 53 | func namespaceUsageTemplate() string { |
| 54 | return fmt.Sprintf(`%s{{if .Runnable}} |
no test coverage detected