Files
jety/go.mod
Tai Groot 0c0fc0320c feat(unmarshal): add Unmarshal and UnmarshalKey methods
Add struct unmarshaling support via JSON round-trip:
- Unmarshal() unmarshals full combined config into a struct
- UnmarshalKey() unmarshals a specific key (supports dot notation)
- Package-level convenience functions for default manager
- Comprehensive tests covering JSON, TOML, YAML, nested keys, scalars
- Bump Go to 1.26.2
- Fix stale Delete reference in README API table
- Add .gitignore for cover.out
2026-04-13 07:36:10 +00:00

9 lines
114 B
Modula-2

module github.com/taigrr/jety
go 1.26.2
require (
github.com/BurntSushi/toml v1.6.0
gopkg.in/yaml.v3 v3.0.1
)