mirror of
https://github.com/rclone/rclone.git
synced 2024-11-24 13:05:28 +08:00
3a14b1d5a9
Needed to drop - azureblob backend - cache backend - qingstor backend - cachestats command - ncdu command
24 lines
588 B
Go
24 lines
588 B
Go
//+build js
|
|
|
|
package terminal
|
|
|
|
import "errors"
|
|
|
|
// GetSize reads the dimensions of the current terminal or returns a
|
|
// sensible default
|
|
func GetSize() (w, h int) {
|
|
return 80, 25
|
|
}
|
|
|
|
// IsTerminal returns whether the fd passed in is a terminal or not
|
|
func IsTerminal(fd int) bool {
|
|
return false
|
|
}
|
|
|
|
// ReadPassword reads a line of input from a terminal without local echo. This
|
|
// is commonly used for inputting passwords and other sensitive data. The slice
|
|
// returned does not include the \n.
|
|
func ReadPassword(fd int) ([]byte, error) {
|
|
return nil, errors.New("can't read password")
|
|
}
|