celery 0.5.5

Rust implementation of Celery
Documentation
1
2
3
4
5
6
pub use crate::async_trait::async_trait;
pub use crate::serde::{Deserialize, Serialize};
pub use crate::tokio::runtime::Runtime;
pub use std::sync::Arc;
pub type Result<T> = std::result::Result<T, crate::error::CeleryError>;
pub type BeatResult<T> = std::result::Result<T, crate::error::BeatError>;