summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorDylan <boss@tehbox.org>2026-06-21 15:27:50 +1200
committerDylan <boss@tehbox.org>2026-06-21 15:27:50 +1200
commitdb14bdce8eac0d7d83109365cbeda389febfb788 (patch)
tree755a7d22efde8f283dc73b5b943d5c37f4caf158 /src/main.rs
parenta472b1cdaa8a1f72b96988009b3d4d9820e7128f (diff)
downloadtehimage-rs-db14bdce8eac0d7d83109365cbeda389febfb788.tar.gz
tehimage-rs-db14bdce8eac0d7d83109365cbeda389febfb788.zip
feat: Moved from and to bytes to a single trait
Now called `ByteEncode`
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.rs b/src/main.rs
index 2d68a02..1e78abb 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -5,6 +5,7 @@ mod reader;
mod image;
mod bmp;
mod writer;
+mod byte_encode;
fn main() {
let file = File::open("smiley.bmp").expect("File does not exist");