aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-10-29 15:46:27 -0400
committerJesse Luehrs <doy@tozt.net>2019-10-29 15:46:27 -0400
commit1f7cb68522ceb57187bcc9353bc2be405a927015 (patch)
tree58773e43f78df241f003a0c02ff3f1d5ed56db21 /src/lib.rs
parent267f7452949617375c8570caf4b03b434e3350e8 (diff)
downloadvt100-rust-1f7cb68522ceb57187bcc9353bc2be405a927015.tar.gz
vt100-rust-1f7cb68522ceb57187bcc9353bc2be405a927015.zip
get some tests passing
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 3a74ed3..e60c9e1 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -2,10 +2,12 @@
#![warn(clippy::nursery)]
#![allow(clippy::missing_const_for_fn)]
+mod attrs;
mod cell;
-pub use cell::Cell;
mod color;
-pub use color::Color;
mod pos;
mod screen;
+
+pub use cell::Cell;
+pub use color::Color;
pub use screen::Screen;