rft-cli 0.6.0

Zero-config Docker Compose isolation for git worktrees
1
2
3
4
5
6
7
use crate::error::Result;

pub async fn run(indices: Vec<usize>) -> Result<()> {
    super::stop::run(indices.clone()).await?;
    super::start::run(indices, false).await?;
    Ok(())
}