()
| 12 | ) |
| 13 | |
| 14 | func externalAuth() *serpent.Command { |
| 15 | return &serpent.Command{ |
| 16 | Use: "external-auth", |
| 17 | Short: "Manage external authentication", |
| 18 | Long: "Authenticate with external services inside of a workspace.", |
| 19 | Handler: func(i *serpent.Invocation) error { |
| 20 | return i.Command.HelpHandler(i) |
| 21 | }, |
| 22 | Children: []*serpent.Command{ |
| 23 | externalAuthAccessToken(), |
| 24 | }, |
| 25 | } |
| 26 | } |
| 27 | |
| 28 | func externalAuthAccessToken() *serpent.Command { |
| 29 | var extra string |
no test coverage detected