summary refs log tree commit diff
path: root/src/types.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/types.rs')
-rw-r--r--src/types.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/types.rs b/src/types.rs
new file mode 100644
index 0000000..ef45492
--- /dev/null
+++ b/src/types.rs
@@ -0,0 +1,6 @@
+#![forbid(unsafe_code)]
+pub use crate::terminal::Terminal;
+
+pub type Error = std::io::Error;
+pub type Result<T> = std::result::Result<T, Error>;
+