2022-03-30 21:13:53 +00:00
|
|
|
// ReadPassword for OSes which are not supported by golang.org/x/term
|
2016-02-21 10:31:53 +00:00
|
|
|
// See https://github.com/golang/go/issues/14441 - plan9
|
|
|
|
|
2022-03-30 21:13:53 +00:00
|
|
|
//go:build plan9
|
|
|
|
// +build plan9
|
2016-02-21 10:31:53 +00:00
|
|
|
|
2018-01-12 16:30:54 +00:00
|
|
|
package config
|
2016-02-21 10:31:53 +00:00
|
|
|
|
|
|
|
// ReadPassword reads a password with echoing it to the terminal.
|
|
|
|
func ReadPassword() string {
|
|
|
|
return ReadLine()
|
|
|
|
}
|