Pulse/go.mod
Pulse Monitor ebb512c023 fix: webhook persistence using wrong directory
ConfigPersistence was initialized with empty string instead of cfg.DataPath,
causing webhooks to save to /etc/pulse instead of PULSE_DATA_DIR.
This affected Docker deployments where /data is the persistent volume.

Fixes #249
2025-08-05 21:37:56 +00:00

20 lines
521 B
Modula-2

module github.com/rcourtman/pulse-go-rewrite
go 1.19
require (
github.com/gorilla/websocket v1.5.3
github.com/rs/zerolog v1.33.0
github.com/spf13/cobra v1.9.1
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/spf13/pflag v1.0.6 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/sys v0.25.0 // indirect
golang.org/x/term v0.13.0 // indirect
)