croncat_sdk_manager/
state.rs

1use croncat_sdk_tasks::types::TaskExecutionInfo;
2use cw_storage_plus::Item;
3
4/// Safe way to export map of the croncat-factory, but avoid any contract imports
5/// Contract name with the version to the Addr
6pub const LAST_TASK_EXECUTION_INFO: Item<TaskExecutionInfo> = Item::new("last_task_execution_info");