mirror of
https://github.com/42wim/matterbridge
synced 2024-11-15 06:12:55 +00:00
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
|
||
|
}
|