//! Remote worker execution module.
//!
//! This module provides functionality for running torc workers on remote machines via SSH.
//! It enables distributed workflow execution without requiring a scheduler like Slurm.
//!
//! # Usage
//!
//! Create a worker file listing remote machines:
//!
//! ```text
//! # workers.txt
//! worker1.example.com
//! alice@worker2.example.com:2222
//! 192.168.1.10
//! ```
//!
//! Then run workers remotely:
//!
//! ```bash
//! torc remote run workers.txt <workflow-id>
//! torc remote status workers.txt <workflow-id>
//! torc remote stop workers.txt <workflow-id>
//! torc remote collect-logs workers.txt <workflow-id>
//! ```
pub use ;
pub use ;
pub use ;