mithril_aggregator/services/snapshotter/mod.rs
1pub mod ancillary_signer;
2mod compressed_archive_snapshotter;
3mod interface;
4mod test_doubles;
5
6pub use compressed_archive_snapshotter::*;
7pub use interface::*;
8pub use test_doubles::*;
9
10#[cfg(test)]
11pub(crate) mod test_tools {
12 use std::path::PathBuf;
13
14 use mithril_common::test_utils::TempDir;
15
16 pub fn get_test_directory(dir_name: &str) -> PathBuf {
17 TempDir::create("snapshotter", dir_name)
18 }
19}