workmux 0.1.179

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

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

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