mcp_artifact_store/lib.rs
1//! # Artifact Store MCP Server
2//!
3//! Governed artifact registry for ADK-Rust Enterprise — content-immutable,
4//! versioned, provenance-linked, hash-verified artifacts with policy-driven lifecycle.
5
6pub mod error;
7pub mod store;
8pub mod types;
9pub mod memory;
10pub mod server;
11
12#[cfg(feature = "local")]
13pub mod local;
14
15#[cfg(feature = "s3")]
16pub mod s3;
17
18#[cfg(feature = "gcs")]
19pub mod gcs;
20
21pub use error::StoreError;
22pub use store::{BlobStore, MetadataStore};
23pub use types::*;