Add Module::shutdown() in trait

This commit is contained in:
Matthias Beyer 2015-10-19 17:34:15 +02:00
parent 19ab3d425f
commit 170d57cbdf

View file

@ -7,5 +7,6 @@ pub trait Module {
fn name(self) -> String;
fn execute(&self, &rt : Runtime) -> Option<Error>;
fn shutdown(&self, &rt : Runtime) -> Option<Error>;
}