Pull in the modules in lib.rs

This commit is contained in:
Julian Ganz 2016-01-16 15:03:24 +01:00
parent a7d1cdadc0
commit 43b6dbec3e
1 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,9 @@
#[test]
fn it_works() {
}
extern crate toml;
pub mod content;
pub mod entry;
pub mod error;
pub mod header;
pub mod single_use_lock;
pub mod store;