Files
encoding/encoding.go
andrey 3bb09b70d7
All checks were successful
Go Action / goaction (push) Successful in 33s
update lint and dependency (#2)
Reviewed-on: #2
2025-12-23 23:25:07 +03:00

12 lines
181 B
Go

package encoding
import (
"io"
)
// Encode writer from volume.
type Encode func(w io.Writer, v any) error
// Decode reader to volume.
type Decode func(r io.Reader, v any) error