1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2024-08-21 10:43:49 +02:00
ntfy/cmd/subscribe_windows.go
Philipp Heckel ab955d4d1c Logging
2022-06-01 16:57:35 -04:00

16 lines
351 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 defaultConfigFile() string {
return defaultClientConfigFileWindows()
}