olai-uc-server 0.0.1

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