1 2 3 4 5 6 7 8 9 10 11
/// The vector database storing collections. pub mod database; use crate::collection::*; use crate::func::err::Error; use sled::Db; use std::fs::remove_dir_all; use std::path::Path; #[cfg(feature = "py")] use pyo3::prelude::*;