summaryrefslogtreecommitdiff
path: root/src/protocol/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/protocol/mod.rs')
-rw-r--r--src/protocol/mod.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/protocol/mod.rs b/src/protocol/mod.rs
new file mode 100644
index 0000000..9c278ee
--- /dev/null
+++ b/src/protocol/mod.rs
@@ -0,0 +1,9 @@
+// Copyright 2018 The Chromium OS Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+mod messages;
+mod wire_format;
+
+pub use self::messages::*;
+pub use self::wire_format::{Data, WireFormat};