devspace 0.1.0

devspace helps you to quickly start all the programs you need to dev using Tmux and other tools.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::process::ExitCode;

use devspace::DsError;

fn main() -> ExitCode {
    match devspace::run() {
        Ok(()) => ExitCode::SUCCESS,
        Err(DsError::NothingToList) => ExitCode::FAILURE,
        Err(err) => {
            eprintln!("ERROR: {err}");
            ExitCode::FAILURE
        }
    }
}