Skip to content

Commit fa1c880

Browse files
committed
Grouped together protocols in one module
1 parent f99839a commit fa1c880

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/main.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ mod namespace;
1515
mod persistent_list;
1616
mod persistent_list_map;
1717
mod persistent_vector;
18+
#[macro_use]
1819
mod protocol;
1920
mod reader;
2021
mod repl;
@@ -25,6 +26,7 @@ mod user_action;
2526
mod util;
2627
mod value;
2728

29+
mod protocols;
2830
fn main() {
2931
let cli_args: user_action::Action = user_action::parse_args(std::env::args().collect());
3032

src/protocols.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
pub(crate) mod ipersistent_map;
2+
pub use self::ipersistent_map::*;
3+
4+
pub(crate) mod ifn;
5+
pub use self::ifn::*;
6+
7+
pub(crate) mod imeta;
8+
pub use self::imeta::*;

0 commit comments

Comments
 (0)