summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: fd4cb8934f540261cea05b5f04074d8902fb04c5 (plain)
1
2
3
4
5
6
7
8
extern crate failure;
extern crate jwalk;

use failure::Error;

pub fn fun() -> Result<(), Error> {
    unimplemented!();
}