coop-cli 0.1.1

Fire remote jobs down a private ssh channel nothing else can contend with.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! coop — fire remote jobs down a channel nothing else can take.
//!
//! The library half exists so integration tests can drive exactly the code the
//! binary does, including the `Fake` transport that makes test layer 1 possible
//! without a network or an ssh master.

pub mod cli;
pub mod config;
mod dispatch_warn;
pub mod errors;
pub mod jobs;
pub mod lock;
pub mod probe;
pub mod run;
pub mod tail;
pub mod transport;
pub mod wrapper;