Remove old todo module code
This commit is contained in:
parent
92fddae230
commit
e73701ace4
2 changed files with 1 additions and 39 deletions
|
@ -6,9 +6,7 @@ use std::fmt::Display;
|
|||
use std::path::Path;
|
||||
use std::result::Result;
|
||||
|
||||
use module::todo::TodoModule;
|
||||
|
||||
mod todo;
|
||||
use storage::backend::*;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct ModuleError {
|
||||
|
|
|
@ -1,36 +0,0 @@
|
|||
use runtime::Runtime;
|
||||
use module::Module;
|
||||
use module::ModuleResult;
|
||||
use std::path::Path;
|
||||
use std::result::Result;
|
||||
|
||||
pub struct TodoModule {
|
||||
path: Option<String>,
|
||||
}
|
||||
|
||||
const CALLNAMES : &'static [&'static str] = &[ "todo" ];
|
||||
|
||||
impl Module for TodoModule {
|
||||
|
||||
fn new(rt : &Runtime) -> TodoModule {
|
||||
TodoModule {
|
||||
path: None
|
||||
}
|
||||
}
|
||||
|
||||
fn callnames() -> &'static [&'static str] {
|
||||
CALLNAMES
|
||||
}
|
||||
|
||||
fn name(&self) -> &'static str{
|
||||
"Todo"
|
||||
}
|
||||
|
||||
fn execute(&self, rt : &Runtime) -> ModuleResult {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn shutdown(&self, rt : &Runtime) -> ModuleResult {
|
||||
Ok(())
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue