Remove old code

This commit is contained in:
Matthias Beyer 2015-10-30 14:47:21 +01:00
parent 589844102d
commit e426f384f4

View file

@ -7,13 +7,3 @@ pub use runtime::Runtime;
mod file;
mod parser;
pub trait StorageBackend {
fn name(&self) -> String;
fn create(&self, file : File) -> Option<Error>;
fn read(&self, path: Path) -> Result<File, Error>;
fn update(&self, file : File) -> Option<Error>;
fn destroy(&self, path: Path) -> Option<Error>;
}