Files
ntfy/cmd/subscribe_windows.go
2026-01-17 17:51:33 -05:00

14 lines
293 B
Go

//go:build windows
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"}
)