mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 01:25:14 +01:00
13 lines
355 B
Go
13 lines
355 B
Go
// ReadPassword for OSes which are not supported by golang.org/x/crypto/ssh/terminal
|
|
// See https://github.com/golang/go/issues/14441 - plan9
|
|
// https://github.com/golang/go/issues/13085 - solaris
|
|
|
|
// +build solaris plan9
|
|
|
|
package fs
|
|
|
|
// ReadPassword reads a password with echoing it to the terminal.
|
|
func ReadPassword() string {
|
|
return ReadLine()
|
|
}
|