cli/pkg/cmd/auth/shared/prompt.go
2022-09-13 13:22:50 -07:00

10 lines
261 B
Go

package shared
type Prompt interface {
Select(string, string, []string) (int, error)
Confirm(string, bool) (bool, error)
InputHostname() (string, error)
AuthToken() (string, error)
Input(string, string) (string, error)
Password(string) (string, error)
}