ntfy-server/cmd/subscribe_windows.go

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

14 lines
293 B
Go
Raw Normal View History

2026-01-17 17:51:33 -05:00
//go:build windows
2022-05-09 16:22:52 -04:00
package cmd
const (
2022-05-09 21:25:00 -04:00
scriptExt = "bat"
scriptHeader = ""
clientCommandDescriptionSuffix = `The default config file for all client commands is %AppData%\ntfy\client.yml.`
2022-05-09 16:22:52 -04:00
)
2022-05-09 21:25:00 -04:00
var (
scriptLauncher = []string{"cmd.exe", "/Q", "/C"}
)