1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
use crate::errors::*;

use crate::cmd::autonoscope_cmd;
use crate::shell::Shell;
use structopt::StructOpt;


pub type Args = autonoscope_cmd::Args;

pub fn run(rl: &mut Shell, args: &[String]) -> Result<()> {
    let args = Args::from_iter_safe(args)?;
    autonoscope_cmd::run_with_scope_param(rl, args, true)
}