unitycatalog_server/store.rs
1//! Storage abstraction traits.
2//!
3//! These traits live in `unitycatalog-common` so storage backends can implement
4//! them without depending on this server crate. They are re-exported here to keep
5//! the historical `unitycatalog_server::store::*` paths working.
6pub use unitycatalog_common::store::{
7 ObjectStoreAdapter, ProvidesResourceStore, ResourceStore, ResourceStoreReader,
8};