celery 0.1.0-alpha

Rust implementation of Celery
Documentation
1
2
3
4
5
6
7
8
9
10
mod app;
mod broker;
mod error;
mod protocol;
mod task;

pub use app::Celery;
pub use broker::{amqp, Broker};
pub use error::{Error, ErrorKind};
pub use task::Task;