//go:build windows package restic import "os" // Windows has no SIGTERM. The closest equivalent is os.Interrupt // (CTRL_BREAK_EVENT), but Go's exec.Cmd.Process.Signal() on Windows // only supports os.Kill — sending anything else returns an error and // no signal is delivered. Fall back to os.Kill so Cancel still works // (immediate force-kill); WaitDelay is unused but harmless. var sigterm = os.Kill