badalsahani's picture
feat: chroma initial deploy
287a0bc
raw
history blame contribute delete
301 Bytes
use serde::Deserialize;
/// The configuration for the custom resource memberlist provider.
/// # Fields
/// - storage_path: The path to use for temporary storage in the segment manager, if needed.
#[derive(Deserialize)]
pub(crate) struct SegmentManagerConfig {
pub(crate) storage_path: String,
}