//! Scheduler client functionality for interacting with the go-server scheduler
pub use ;
pub use RetryClient;
/// Task status constants
pub const TASK_STATUS_ERROR: &str = "error";
pub const TASK_STATUS_DONE: &str = "done";
pub const TASK_STATUS_PENDING: &str = "pending";
pub const TASK_STATUS_PROCESSING: &str = "processing";