co-author 0.1.3

Co-Author your git commits from the command line
1
2
3
4
5
6
7
8
9
use super::{cli::Cli, err::UiError};
use crate::{common::runner::CommandRunner, Result};

pub fn init() -> Result<Cli> {
	Ok(Cli::new(
		Box::new(rustyline::DefaultEditor::new().map_err(|e| UiError::Unknown(e.to_string()))?),
		Box::new(CommandRunner),
	))
}