Skip to content

Commit

Permalink
Fixes on nitox crate exposed members
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathieu Amiot committed Sep 30, 2018
1 parent 7c65d06 commit 5b9777b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use backoff::backoff::Backoff;
use backoff::ExponentialBackoff;
use futures::{future, Future};
use nitox::{
protocol::commands::{Message as NatsMessage, PubCommand as NatsPublish},
commands::{Message as NatsMessage, PubCommand as NatsPublish},
NatsClient, NatsClientOptions, NatsError,
};

Expand Down
2 changes: 1 addition & 1 deletion src/messages.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use actix::prelude::*;
use nitox::{protocol::commands::Message as NatsMessage, NatsError};
use nitox::{commands::Message as NatsMessage, NatsError};

/// PublishMessage is a message that publishes a buffer to the NATS queue but doesn't wait for a reply afterwards.
/// Think of it as the Pub part in PubSub.
Expand Down

0 comments on commit 5b9777b

Please sign in to comment.