aditya.siregar c9f1e33c24 Add Infra
2025-03-03 18:59:25 +07:00

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
}