subscribe_windows.go 293 B

12345678910111213
  1. //go:build windows
  2. package cmd
  3. const (
  4. scriptExt = "bat"
  5. scriptHeader = ""
  6. clientCommandDescriptionSuffix = `The default config file for all client commands is %AppData%\ntfy\client.yml.`
  7. )
  8. var (
  9. scriptLauncher = []string{"cmd.exe", "/Q", "/C"}
  10. )