diff options
| author | Austin Hellyer <[email protected]> | 2016-09-19 09:00:03 -0700 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-10-18 11:14:27 -0700 |
| commit | 8fc8c81403c3daa187ba96a7d488a64db21463bf (patch) | |
| tree | 81bc4890c28b08ce806f69084617066bce863c2d /src/prelude.rs | |
| download | serenity-8fc8c81403c3daa187ba96a7d488a64db21463bf.tar.xz serenity-8fc8c81403c3daa187ba96a7d488a64db21463bf.zip | |
Initial commit
Diffstat (limited to 'src/prelude.rs')
| -rw-r--r-- | src/prelude.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/prelude.rs b/src/prelude.rs new file mode 100644 index 0000000..45906bf --- /dev/null +++ b/src/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 ::error::{Error, Result}; +pub use ::client::ClientError; |