(ep providers.Endpoint)
| 125 | } |
| 126 | |
| 127 | func enabledString(ep providers.Endpoint) string { |
| 128 | if ep.IsEnabled() { |
| 129 | return "yes" |
| 130 | } |
| 131 | return "no" |
| 132 | } |
| 133 | |
| 134 | func (a *App) providerShowCommand(state *globalState) *cobra.Command { |
| 135 | var revealKey bool |
no test coverage detected