mirror of
https://github.com/hrfee/jfa-go.git
synced 2026-01-18 16:47:42 +01:00
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.
19 lines
617 B
Modula-2
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
|
|
)
|