We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f99839a commit fa1c880Copy full SHA for fa1c880
src/main.rs
@@ -15,6 +15,7 @@ mod namespace;
15
mod persistent_list;
16
mod persistent_list_map;
17
mod persistent_vector;
18
+#[macro_use]
19
mod protocol;
20
mod reader;
21
mod repl;
@@ -25,6 +26,7 @@ mod user_action;
25
26
mod util;
27
mod value;
28
29
+mod protocols;
30
fn main() {
31
let cli_args: user_action::Action = user_action::parse_args(std::env::args().collect());
32
src/protocols.rs
@@ -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