rclone/fs/config/config_read_password_unsupported.go

14 lines
387 B
Go
Raw Normal View History

// 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
2021-09-09 14:25:25 +02:00
//go:build solaris || plan9
// +build solaris plan9
package config
// ReadPassword reads a password with echoing it to the terminal.
func ReadPassword() string {
return ReadLine()
}