()
| 15 | ) |
| 16 | |
| 17 | func newDebugOAuthCmd() *cobra.Command { |
| 18 | cmd := &cobra.Command{ |
| 19 | Use: "oauth", |
| 20 | Short: "OAuth token management", |
| 21 | } |
| 22 | |
| 23 | cmd.AddCommand(newDebugOAuthListCmd()) |
| 24 | cmd.AddCommand(newDebugOAuthRemoveCmd()) |
| 25 | cmd.AddCommand(newDebugOAuthLoginCmd()) |
| 26 | |
| 27 | return cmd |
| 28 | } |
| 29 | |
| 30 | func newDebugOAuthListCmd() *cobra.Command { |
| 31 | var jsonOutput bool |
no test coverage detected