zenity/pwd_stub.go

10 lines
193 B
Go
Raw Normal View History

2021-04-08 20:26:57 -04:00
// +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
}