active-storage 0.1.1

Active Storage facilitates uploading files to a cloud storage
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::path::PathBuf;

use active_storage::StoreConfig;

use super::flow;

#[tokio::test]
async fn inmem() {
    let inmem_driver = StoreConfig::InMem().build().await.unwrap();

    flow::test_driver(&inmem_driver, PathBuf::new()).await;
}