This commit is contained in:
Adrian Heine 2017-05-19 12:59:27 +02:00
parent 8882712925
commit 9268254369
4 changed files with 122 additions and 9 deletions

View file

@ -9,6 +9,7 @@ pub trait Storage {
fn recent_date(&self) -> Result<u64, Box<Error>>;
}
#[derive(Clone)]
pub struct SimpleStorage(String, String);
impl SimpleStorage {