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