()
| 202 | } |
| 203 | |
| 204 | func (p *huhPrompter) AuthToken() (string, error) { |
| 205 | form, result := p.buildAuthTokenForm() |
| 206 | err := p.runForm(form) |
| 207 | return *result, err |
| 208 | } |
| 209 | |
| 210 | func (p *huhPrompter) buildConfirmDeletionForm(requiredValue string) *huh.Form { |
| 211 | return p.newForm( |
nothing calls this directly
no test coverage detected