1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2025-02-18 04:34:10 +01:00
ntfy/cmd/subscribe_windows.go

16 lines
357 B
Go
Raw Normal View History

2022-05-09 16:22:52 -04:00
package cmd
const (
2022-05-09 21:25:00 -04:00
scriptExt = "bat"
scriptHeader = ""
clientCommandDescriptionSuffix = `The default config file for all client commands is %AppData%\ntfy\client.yml.`
2022-05-09 16:22:52 -04:00
)
2022-05-09 21:25:00 -04:00
var (
scriptLauncher = []string{"cmd.exe", "/Q", "/C"}
)
2022-05-09 16:22:52 -04:00
func defaultClientConfigFile() string {
2022-06-01 16:57:35 -04:00
return defaultClientConfigFileWindows()
2022-05-09 16:22:52 -04:00
}