package
0.0.0-20241212173216-745cb4b42230
Repository: https://github.com/ibiscum/go-programming-cookbook-second-edition.git
Documentation: pkg.go.dev

# Functions

MarshalAll takes some data stored in structs and converts them to the various data formats.
OtherJSONExamples shows ways to use types beyond structs and other useful functions.
UnmarshalAll takes data in various formats and converts them into structs.

# Structs

JSONData is our common data struct with JSON struct tags.
TOMLData is our common data struct with TOML struct tags.
YAMLData is our common data struct with YAML struct tags.