acorn-cli 0.1.31

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

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