ntfy/cmd/subscribe_windows.go

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
366 B
Go
Raw Permalink Normal View History

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