Spaces:
Sleeping
Sleeping
use async_trait::async_trait; | |
pub(crate) mod config; | |
pub(crate) mod s3; | |
trait Storage { | |
async fn get(&self, key: &str, path: &str) -> Result<(), String>; | |
async fn put(&self, key: &str, path: &str) -> Result<(), String>; | |
} | |