diff options
| author | Adelyn Breelove <[email protected]> | 2019-01-21 13:50:14 -0700 |
|---|---|---|
| committer | Adelyn Breelove <[email protected]> | 2019-01-21 13:50:14 -0700 |
| commit | 3dfa0c4d0247bfddae476372414808cd219004f8 (patch) | |
| tree | 2b0b4b8f7846918c55b6b698454c9d63251dbd1a /lib/client.ml | |
| parent | Fix sharding logic (diff) | |
| download | disml-3dfa0c4d0247bfddae476372414808cd219004f8.tar.xz disml-3dfa0c4d0247bfddae476372414808cd219004f8.zip | |
Add status change command example
Diffstat (limited to 'lib/client.ml')
| -rw-r--r-- | lib/client.ml | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/client.ml b/lib/client.ml index 3b0024d..72be653 100644 --- a/lib/client.ml +++ b/lib/client.ml @@ -4,14 +4,13 @@ include Dispatch type t = { sharder: Sharder.t; - token: string; } let start ?count token = Client_options.token := token; Sharder.start ?count () >>| fun sharder -> - { sharder; token; } + { sharder; } let set_status ~status client = Sharder.set_status ~status client.sharder |