mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-22 17:26:03 +03:00
7 lines
216 B
Go
7 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
|
|
}
|