dure 0.2.4

Detachable Windows console sessions that outlive the terminal
1
2
3
4
5
6
7
8
9
10
11
//! Subcommand implementations.
//!
//! Each module here is the thin wrapper for one subcommand. The long-lived
//! supervisor role itself lives in [`crate::supervisor`]; `supervise` is only
//! the hidden subcommand that enters it.

pub(crate) mod kill;
pub(crate) mod list;
pub(crate) mod resume;
pub(crate) mod run;
pub(crate) mod supervise;