autoschematic-core 0.14.2

Core shared functionality for Autoschematic: workflow engine, state management, and Git integrations
Documentation
1
2
3
4
5
6
7
use tokio::sync::RwLock;

lazy_static::lazy_static! {
    pub static ref ABORT_HANDLE:
        RwLock<Option<tokio::task::AbortHandle>>
            = RwLock::new(None);
}