1
2
3
4
5
6
7
8
mod fs_store;

use std::path::PathBuf;

#[derive(Clone, Debug)]
pub struct FsModuleStore {
    base: PathBuf,
}