aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
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;