1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-07-20 12:07:29 +02:00
ntfy/cmd/subscribe_windows.go
2022-06-02 10:50:05 -04:00

16 lines
357 B
Go

package cmd
const (
scriptExt = "bat"
scriptHeader = ""
clientCommandDescriptionSuffix = `The default config file for all client commands is %AppData%\ntfy\client.yml.`
)
var (
scriptLauncher = []string{"cmd.exe", "/Q", "/C"}
)
func defaultClientConfigFile() string {
return defaultClientConfigFileWindows()
}