This commit is contained in:
atweiden 2022-06-27 13:47:33 +10:00
parent f05e0966cb
commit 4d6d2a1697

View File

@ -1,6 +1,7 @@
use crate::error::Error;
use std::borrow::Cow;
use std::result;
use crate::error::Error;
pub(crate) type CatMap = io_cat::CatMap<Cow<'static, str>>;
pub type Result<A> = result::Result<A, Error>;