doc.go raw

   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  // The github.com/BurntSushi/toml/cmd/tomlv package implements a TOML validator,
   6  // and can be used to verify if TOML document is valid. It can also be used to
   7  // print the type of each key.
   8  package toml
   9