bsc 0.2.0

A tiny client library for Beanstalkd
Documentation
1
2
3
4
5
6
7
8
9
mod beanstalk;
mod error;
mod stats;

pub use error::*;
pub use beanstalk::*;
pub use stats::*;

pub(crate) type Result<T, E = crate::Error> = std::result::Result<T, E>;