Files
encoding/encoding.go
andrey 6c843faf4a
Some checks failed
Go Action / goaction (push) Failing after 27m2s
Go Action / goaction (pull_request) Failing after 26m32s
update lint and dependency
2025-12-23 23:00:51 +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