![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/pelletier/go-toml/v2](https://github.com/pelletier/go-toml) from 2.1.1 to 2.2.0. - [Release notes](https://github.com/pelletier/go-toml/releases) - [Changelog](https://github.com/pelletier/go-toml/blob/v2/.goreleaser.yaml) - [Commits](https://github.com/pelletier/go-toml/compare/v2.1.1...v2.2.0) --- updated-dependencies: - dependency-name: github.com/pelletier/go-toml/v2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
8 lines
216 B
Go
8 lines
216 B
Go
package unstable
|
|
|
|
// The Unmarshaler interface may be implemented by types to customize their
|
|
// behavior when being unmarshaled from a TOML document.
|
|
type Unmarshaler interface {
|
|
UnmarshalTOML(value *Node) error
|
|
}
|