aboutsummaryrefslogtreecommitdiff
path: root/hid/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'hid/src/lib.rs')
-rw-r--r--hid/src/lib.rs17
1 files changed, 17 insertions, 0 deletions
diff --git a/hid/src/lib.rs b/hid/src/lib.rs
new file mode 100644
index 0000000..d71b5a5
--- /dev/null
+++ b/hid/src/lib.rs
@@ -0,0 +1,17 @@
+extern crate hidapi_sys as sys;
+extern crate libc;
+
+mod error;
+pub use error::{Error, Result};
+
+mod manager;
+pub use manager::{Manager, init};
+
+mod devices;
+pub use devices::Devices;
+
+mod device;
+pub use device::Device;
+
+mod handle;
+pub use handle::Handle;