Add add_snapshot API method

This commit is contained in:
Dustin J. Mitchell
2021-09-30 02:45:59 +00:00
parent e2f79edad6
commit d1da8eee52
4 changed files with 507 additions and 1 deletions

View File

@@ -35,3 +35,10 @@ impl Server {
.service(api_scope())
}
}
#[cfg(test)]
mod test {
pub(crate) fn init_logging() {
let _ = env_logger::builder().is_test(true).try_init();
}
}