kabu 0.7.1

CLI tool to enhance git worktree and jj workspace with automated setup
1
2
3
4
5
6
use crate::cli::InitArgs;
use crate::error::Result;

pub(crate) fn run(args: InitArgs) -> Result<()> {
    crate::init::run(args)
}