zenity/pwd_stub.go
2021-04-29 16:05:28 +01:00

9 lines
179 B
Go

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