From a5ac019f02e2fee0f26b1ae70ba8d46ed8052848 Mon Sep 17 00:00:00 2001 From: msiglreith Date: Mon, 9 Jan 2017 00:55:34 +0100 Subject: [PATCH] Export LoadingError from entry module --- src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index ea2ba14..f1e1bb0 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -3,7 +3,7 @@ extern crate shared_library; extern crate lazy_static; pub use instance::Instance; pub use device::Device; -pub use entry::Entry; +pub use entry::{Entry, LoadingError}; mod instance; mod device;