redis-subscribe 0.2.1

Easily subscribe and unsubscribe to redis pubsub.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod command;
mod error;
mod message;
mod parser;
mod redis_sub;

#[macro_use]
extern crate tracing;

use crate::command::Command;
pub use crate::error::*;
pub use crate::message::Message;
pub use redis_sub::RedisSub;