您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

14 行
470 B

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