mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-11-01 01:21:15 +01:00
15 lines
357 B
Go
15 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()
|
|
}
|