1
2
3
4
5
use std::result;

use error::Error;

pub type Result<T> = result::Result<T, Error>;