rename to idk

This commit is contained in:
endernon 2024-12-06 23:04:16 +00:00
parent 0819fa8027
commit 5c2f50d446
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
mod catzou;
mod idk;
use clap::Parser;
use glob::glob;
use std::io::{Read};
@ -73,6 +73,6 @@ fn main() {
for thatpath in filelist {
println!("File: {:?}",thatpath);
catzou::encoder(thatpath.to_owned(), thatpath)
idk::encoder(thatpath.to_owned(), thatpath)
}
}