jj-vine 0.3.3

Stacked pull requests for jj (jujutsu). Supports GitLab and bookmark-based flow.
Documentation
1
2
3
4
5
6
7
use clap::Parser;
use jj_vine::{cli::Cli, error::Result};

#[tokio::main]
async fn main() -> Result<()> {
    Cli::parse().run_stdout().await
}