Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
kardolus
GitHub Repository: kardolus/chatgpt-cli
Path: blob/main/vendor/github.com/pelletier/go-toml/v2/unstable/unmarshaler.go
2893 views
1
package unstable
2
3
// The Unmarshaler interface may be implemented by types to customize their
4
// behavior when being unmarshaled from a TOML document.
5
type Unmarshaler interface {
6
UnmarshalTOML(value *Node) error
7
}
8
9