Linter fix

This commit is contained in:
2023-11-01 13:04:16 +03:00
parent e652abb4bd
commit 3147a0b683

View File

@@ -8,6 +8,6 @@ func marshal(v interface{}) ([]byte, error) {
return msgpack.Marshal(v)
}
func unmarshal(b []byte, v interface{}) error {
func unmarshal(b []byte, v interface{}) error { //nolint:unused // will use later
return msgpack.Unmarshal(b, v)
}