imag/libimagtodo/src/lib.rs

23 lines
320 B
Rust
Raw Normal View History

2016-05-04 13:00:48 +00:00
extern crate semver;
2016-05-08 08:59:21 +00:00
extern crate uuid;
extern crate toml;
2016-05-04 12:37:25 +00:00
extern crate task_hookrs;
#[macro_use] extern crate libimagstore;
module_entry_path_mod!("todo", "0.1.0");
pub mod error;
2016-05-04 11:47:39 +00:00
pub mod task;
2016-05-04 12:12:14 +00:00
pub mod delete;
pub mod read;
pub mod set;
pub mod add;
2016-05-04 11:47:39 +00:00
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
}
}