Initial commit

This commit is contained in:
Matt Brubeck 2020-05-16 22:16:46 -07:00
commit 1715dfb584
8 changed files with 516 additions and 0 deletions

7
src/lib.rs Normal file
View file

@ -0,0 +1,7 @@
use {
std::{
error::Error,
},
};
pub type Result<T=()> = std::result::Result<T, Box<dyn Error>>;