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 + +