Skip to main content

uni_store/
lib.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright 2024-2026 Dragonscale Team
3
4pub mod cloud;
5pub mod compaction;
6pub mod lancedb;
7pub mod runtime;
8pub mod storage;
9pub mod store_utils;
10pub mod snapshot {
11    pub mod manager;
12}
13
14pub use compaction::{CompactionStats, CompactionStatus};
15pub use lancedb::LanceDbStore;
16pub use runtime::context::QueryContext;
17pub use runtime::property_manager::PropertyManager;
18pub use runtime::writer::Writer;
19pub use snapshot::manager::SnapshotManager;