Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/zslayton/stomp-rs
Browse files Browse the repository at this point in the history
  • Loading branch information
zslayton committed Jan 11, 2015
2 parents 151874d + b43a94c commit af2d5c2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,10 @@ The APIs for `stomp-rs` are not yet stable and are likely to fluctuate before v1
```rust
extern crate stomp;
use stomp::frame::Frame;
use stomp::subscription::{Ack, AckOrNack, Client};
use stomp::subscription::AckOrNack;
use stomp::subscription::AckOrNack::Ack;
use stomp::subscription::AckMode::Auto;


fn main() {
let mut session = match stomp::connect("127.0.0.1", 61613) {
Expand Down

0 comments on commit af2d5c2

Please sign in to comment.