coop/lib.rs
1//! coop — fire remote jobs down a channel nothing else can take.
2//!
3//! The library half exists so integration tests can drive exactly the code the
4//! binary does, including the `Fake` transport that makes test layer 1 possible
5//! without a network or an ssh master.
6
7pub mod cli;
8pub mod config;
9mod dispatch_warn;
10pub mod errors;
11pub mod jobs;
12pub mod lock;
13pub mod probe;
14pub mod run;
15pub mod tail;
16pub mod transport;
17pub mod wrapper;