1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]

#[cfg(test)]
pub mod tests;

// Reply ID
pub const REPLY_CRONCAT_TASK_CREATION: u64 = 0;

pub mod error;
pub mod handle_incoming_task;
pub mod reply_handler;
pub mod types;

pub use croncat_sdk_tasks::types::TaskExecutionInfo as CronCatTaskExecutionInfo;