badalsahani's picture
feat: chroma initial deploy
287a0bc
raw
history blame contribute delete
246 Bytes
use async_trait::async_trait;
pub(crate) mod config;
pub(crate) mod s3;
#[async_trait]
trait Storage {
async fn get(&self, key: &str, path: &str) -> Result<(), String>;
async fn put(&self, key: &str, path: &str) -> Result<(), String>;
}