aboutsummaryrefslogtreecommitdiffstats
path: root/zone_core/src/storage/snapshots.rs
blob: 00a4e37191f738a60908ef6d633b5cc6dd569f6d (plain)
1
2
3
4
5
6
7
use crate::Container;

pub trait Snapshots {
    type Error;

    fn new(&self, container: Container) -> Result<(), Self::Error>;
}