workmux 0.1.181

An opinionated workflow tool that orchestrates git worktrees and tmux
1
2
3
4
5
6
7
8
use anyhow::Result;

const README: &str = include_str!("../../README.md");

pub fn run() -> Result<()> {
    crate::markdown::display(README, README);
    Ok(())
}