You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ntool/nsys/clipboard/util_darwin.go

16 lines
238 B
Go

//go:build darwin
package clipboard
// GetWriterBin program name
func GetWriterBin() string {
return WriterOnMac
}
// GetReaderBin program name
func GetReaderBin() string {
return ReaderOnMac
}
func available() bool { return true }