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