wipe/src/main.rs
2022-08-06 21:49:12 +02:00

21 lines
261 B
Rust

pub mod convert;
pub mod pattern;
mod error;
mod printer;
mod renderer;
mod term;
mod timer;
mod vec;
pub use error::*;
pub use printer::*;
pub use renderer::*;
pub use term::*;
pub use timer::*;
pub use vec::*;
fn main() -> Result<(), Error> {
Ok(())
}