feat: port apply command from influxdb (#160)

This commit is contained in:
Daniel Moran
2021-06-30 14:47:23 -04:00
committed by GitHub
parent d7b2983dd4
commit a3f36a9821
8 changed files with 1037 additions and 8 deletions

View File

@ -9,6 +9,7 @@ type StdIO interface {
WriteErr(p []byte) (n int, err error)
Banner(message string) error
Error(message string) error
InputIsInteractive() bool
GetStringInput(prompt, defaultValue string) (string, error)
GetSecret(prompt string, minLen int) (string, error)
GetPassword(prompt string) (string, error)