mirror of
https://github.com/rclone/rclone.git
synced 2024-11-22 06:49:15 +08:00
12 lines
278 B
Go
12 lines
278 B
Go
// ReadPassword for OSes which are not supported by golang.org/x/term
|
|
// See https://github.com/golang/go/issues/14441 - plan9
|
|
|
|
//go:build plan9
|
|
|
|
package config
|
|
|
|
// ReadPassword reads a password with echoing it to the terminal.
|
|
func ReadPassword() string {
|
|
return ReadLine()
|
|
}
|