summary refs log tree commit diff
path: root/src/types.rs
blob: ef45492879a05782a3b06f0d484ea4370ce280eb (plain)
1
2
3
4
5
6
#![forbid(unsafe_code)]
pub use crate::terminal::Terminal;

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