about summary refs log tree commit diff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 6eb07d6..5ef22af 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,6 +1,10 @@
-mod components;
+mod color;
+mod gif;
 mod lzw;
+
+pub mod block;
 pub mod writer;
 
-pub use components::*;
+pub use color::Color;
+pub use gif::Gif;
 pub use lzw::LZW;
\ No newline at end of file