Files
jfa-go/scripts/yaml/go.mod
Harvey Tindall fe20187b0c scripts: add "yaml" script
takes over the "Order" validation of scripts/ini, and also re-orders the
"Sections" section according to "Order". Used instead of copying
config-base.yaml into the executable's data.
2025-11-25 14:43:33 +00:00

19 lines
617 B
Modula-2

module github.com/hrfee/jfa-go/scripts/yaml
replace github.com/hrfee/jfa-go/common => ../../common
replace github.com/hrfee/jfa-go/logmessages => ../../logmessages
go 1.22.4
require (
github.com/fatih/color v1.18.0 // indirect
github.com/goccy/go-yaml v1.18.0 // indirect
github.com/hrfee/jfa-go/common v0.0.0-20251123201034-b1c578ccf49f // indirect
github.com/hrfee/jfa-go/logmessages v0.0.0-20240806200606-6308db495a0a // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
golang.org/x/sys v0.25.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)