aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2017-10-26 21:10:19 -0700
committerBryan Newbold <bnewbold@robocracy.org>2017-10-26 21:10:22 -0700
commit177d639fab67b790f43bc0573d785271d8afb858 (patch)
tree7eaefcfc7bc508e00aa633c80983ed90179f84ec /src/lib.rs
parent594807d6ef0954ff8ca0b99cf41329c0ad3252e7 (diff)
downloadgeniza-177d639fab67b790f43bc0573d785271d8afb858.tar.gz
geniza-177d639fab67b790f43bc0573d785271d8afb858.zip
refactor file/module names
I had some early confusion around whether SLEEP refered to individual files or the collection of files making a register (it seems to mean the whole register). Will probably need to refactor again.
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/lib.rs b/src/lib.rs
index fbbe50a..3fd39ac 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -40,11 +40,11 @@ mod errors {
pub use errors::*;
// Organize code internally (files, modules), but pull it all into a flat namespace to export.
-mod sleep;
-pub use sleep::*;
-mod register;
-pub use register::*;
-mod sync;
-pub use sync::*;
-pub mod network_proto;
-pub mod drive_proto;
+mod sleep_file;
+pub use sleep_file::*;
+mod sleep_register;
+pub use sleep_register::*;
+mod protocol;
+pub use protocol::*;
+pub mod network_msg;
+pub mod metadata_msg;