aboutsummaryrefslogtreecommitdiff
path: root/src/internal/prelude.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/prelude.rs')
-rw-r--r--src/internal/prelude.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/internal/prelude.rs b/src/internal/prelude.rs
new file mode 100644
index 0000000..9b6b993
--- /dev/null
+++ b/src/internal/prelude.rs
@@ -0,0 +1,9 @@
+//! These prelude re-exports are a set of exports that are commonly used from
+//! within the library.
+//!
+//! These are not publicly re-exported to the end user, and must stay as a
+//! private module.
+
+pub use serde_json::Value;
+pub use ::client::ClientError;
+pub use ::error::{Error, Result};