acorn-cli 0.1.34

ACORN command line interface
1
2
3
4
5
6
7
8
9
10
11
12
13
use acorn_lib::prelude::PathBuf;
use color_eyre::eyre::{Report, Result};

pub fn run(
    _path: &Option<PathBuf>,
    _branch: &Option<String>,
    _commit: &Option<String>,
    _ignore: &Option<String>,
    _dry_run: bool,
    _merge_request: bool,
) -> Result<(), Report> {
    Ok(())
}