ayun-storage 0.23.0

The RUST Framework for Web Rustceans.
Documentation
1
2
3
4
5
6
7
8
use super::Adapter;
use crate::traits::StoreDriver;

pub fn new() -> Box<dyn StoreDriver> {
    Box::new(Adapter::new(Box::new(
        object_store::local::LocalFileSystem::new(),
    )))
}