aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 6f6b241971de0b37cd01f99d74fa4e66289783f5 (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
27
28
29
// 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;

extern crate zip;


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

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


    Ok(())
}