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

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