- Rename Go module path github.com/torrentclaw/torrentclaw-cli → github.com/torrentclaw/unarr - Update all imports, ldflags, scripts, docs, and Docker config - Add GitHub Actions release workflow (goreleaser on tag push)
13 lines
325 B
Go
13 lines
325 B
Go
//go:build windows
|
|
|
|
package cmd
|
|
|
|
import "github.com/torrentclaw/unarr/internal/agent"
|
|
|
|
// ReloadableConfig holds a reference to the daemon for hot-reload.
|
|
type ReloadableConfig struct {
|
|
Daemon *agent.Daemon
|
|
}
|
|
|
|
// startReloadWatcher is a no-op on Windows (no SIGUSR1 support).
|
|
func startReloadWatcher(_ *ReloadableConfig) {}
|