aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 38976344daf5982800bbd343e5e50f0591f4eff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// bad-hashish: a tool for recursively, remotely multi-hashing files
// Copyright (C) 2017  Bryan Newbold <bnewbold@robocracy.org>
// GPLv3

#[macro_use]
extern crate log;

#[macro_use]
extern crate error_chain;


mod errors {
    // Create the Error, ErrorKind, ResultExt, and Result types
    error_chain! {
        foreign_links {
            Io(::std::io::Error);
        }
    }
}
pub use errors::*;

pub fn bhash() -> Result<()> {


    Ok(())
}