From 3545aae0184c147c3f1bfa146ce03797d0b76be3 Mon Sep 17 00:00:00 2001 From: surdeus Date: Wed, 13 Mar 2024 22:58:02 +0500 Subject: [PATCH] ... --- context.go | 1 + scan.go | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 scan.go diff --git a/context.go b/context.go index 720625d..4902e50 100644 --- a/context.go +++ b/context.go @@ -92,6 +92,7 @@ func (c *Context) Scan(v any) bool { return false } } + err := c.dec.Decode(v) if err != nil { if err != io.EOF { diff --git a/scan.go b/scan.go new file mode 100644 index 0000000..1b2f47c --- /dev/null +++ b/scan.go @@ -0,0 +1,3 @@ +package bond + +