mirror of
https://github.com/taigrr/jety.git
synced 2026-04-14 01:08:35 -07:00
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
9 lines
114 B
Modula-2
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
|
|
)
|