zenity/pwd_stub.go
2021-04-09 01:26:57 +01:00

10 lines
193 B
Go

// +build windows darwin
package zenity
func password(opts options) (string, string, bool, error) {
opts.hideText = true
str, ok, err := entry("Password:", opts)
return "", str, ok, err
}