diff options
| author | acdenisSK <[email protected]> | 2017-07-16 01:25:35 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2017-07-16 01:25:35 +0200 |
| commit | c2cf6910b6a77c40d543d8950fca45c0d49b6073 (patch) | |
| tree | ba7a2b0f9b4af7550eb919b6faa7abf98979baf6 /src | |
| parent | Merge branch 'master' of https://github.com/zeyla/serenity (diff) | |
| download | serenity-c2cf6910b6a77c40d543d8950fca45c0d49b6073.tar.xz serenity-c2cf6910b6a77c40d543d8950fca45c0d49b6073.zip | |
Make `HANDLE_STILL` public
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/mod.rs b/src/client/mod.rs index a0e6ffb..765dc8d 100644 --- a/src/client/mod.rs +++ b/src/client/mod.rs @@ -54,7 +54,7 @@ use ::model::event::*; #[cfg(feature="framework")] use ::framework::Framework; -static HANDLE_STILL: AtomicBool = ATOMIC_BOOL_INIT; +pub static HANDLE_STILL: AtomicBool = ATOMIC_BOOL_INIT; /// The Client is the way to be able to start sending authenticated requests /// over the REST API, as well as initializing a WebSocket connection through |