ellipsis 0.1.0

A dotfile manager
Documentation
// For command line arguments
use clap::ArgMatches;

// Import our result
use ::{Result,home_dir};
// Import our landing

// The function we're exporting
// Given the current matches, open, read, or modify the config file as necessary
pub fn run(_matches : &ArgMatches) -> Result<()> {

    println!("{}", home_dir()
             .expect("Couldn't find home dir!")
             .to_string_lossy());
    Ok(())
}