10 lines
245 B
Go
10 lines
245 B
Go
//go:build windows
|
|
|
|
package config
|
|
|
|
// Windows installations do not ship the POSIX notification helper. Users can
|
|
// configure a cmd.exe-compatible command explicitly if they want notifications.
|
|
func defaultNotifyCommand() string {
|
|
return ""
|
|
}
|