summaryrefslogtreecommitdiff
path: root/vendor/github.com/pelletier/go-toml/v2/unstable
diff options
context:
space:
mode:
authorLibravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2024-03-25 10:31:19 +0000
committerLibravatar GitHub <noreply@github.com>2024-03-25 10:31:19 +0000
commit40ee47053684a87c717b941951df44d5a0ea9129 (patch)
tree84edccfe00216c10231838ea1f453542bb566e52 /vendor/github.com/pelletier/go-toml/v2/unstable
parent[chore] Move local account settings to separate db table (#2770) (diff)
downloadgotosocial-40ee47053684a87c717b941951df44d5a0ea9129.tar.xz
[chore]: Bump github.com/gin-contrib/gzip from 0.0.6 to 1.0.0 (#2781)
Diffstat (limited to 'vendor/github.com/pelletier/go-toml/v2/unstable')
-rw-r--r--vendor/github.com/pelletier/go-toml/v2/unstable/unmarshaler.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/vendor/github.com/pelletier/go-toml/v2/unstable/unmarshaler.go b/vendor/github.com/pelletier/go-toml/v2/unstable/unmarshaler.go
new file mode 100644
index 000000000..00cfd6de4
--- /dev/null
+++ b/vendor/github.com/pelletier/go-toml/v2/unstable/unmarshaler.go
@@ -0,0 +1,7 @@
+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
+}