1
2
3
4
5
6
7
8
9
10
11
use crate::{open_image, AnyResult};
use clap::ArgMatches;

pub fn main(matches: &ArgMatches) -> AnyResult<()> {
    let img = matches.value_of("img").unwrap();
    let _paths = matches.values_of("path").unwrap();

    let (_file, _image_info) = open_image(img)?;

    Ok(())
}