doc.go 494 B

1234567891011
  1. // Package toml implements decoding and encoding of TOML files.
  2. //
  3. // This package supports TOML v1.0.0, as specified at https://toml.io
  4. //
  5. // There is also support for delaying decoding with the Primitive type, and
  6. // querying the set of keys in a TOML document with the MetaData type.
  7. //
  8. // The github.com/BurntSushi/toml/cmd/tomlv package implements a TOML validator,
  9. // and can be used to verify if TOML document is valid. It can also be used to
  10. // print the type of each key.
  11. package toml