reddb_server/storage/schema/value_codec.rs
1//! Re-export shim for the `Value` byte codec.
2//!
3//! `Value::to_bytes`/`from_bytes` delegate to this codec, so it travelled with
4//! the logical type vocabulary into the neutral keystone crate [`reddb_types`]
5//! (ADR 0052). This shim keeps the historical
6//! `storage::schema::value_codec` path resolving so existing call-sites stay
7//! untouched.
8
9pub use reddb_types::value_codec::*;