update lint and dependency
Some checks failed
Go Action / goaction (push) Failing after 27m2s
Go Action / goaction (pull_request) Failing after 26m32s

This commit is contained in:
andrey
2025-12-23 23:00:51 +03:00
parent 2df0314393
commit 6c843faf4a
15 changed files with 119 additions and 67 deletions

View File

@@ -13,13 +13,13 @@ var (
)
// Decode from reader to value.
func Decode(r io.Reader, v interface{}) error {
_, err := toml.DecodeReader(r, v)
func Decode(r io.Reader, v any) error {
_, err := toml.NewDecoder(r).Decode(v)
return err
}
// Encode from value to writer.
func Encode(w io.Writer, v interface{}) error {
func Encode(w io.Writer, v any) error {
return toml.NewEncoder(w).Encode(v)
}