wipe/src/main.rs

12 lines
157 B
Rust
Raw Normal View History

2022-08-01 09:46:07 +00:00
pub mod convert;
2022-07-29 13:17:30 +00:00
pub mod error;
2022-07-29 15:27:14 +00:00
pub mod pattern;
2022-07-29 13:17:30 +00:00
pub mod printer;
2022-08-01 10:48:24 +00:00
mod renderer;
2022-07-29 13:17:30 +00:00
pub mod term;
2022-07-29 13:49:16 +00:00
mod vec;
2022-07-29 12:50:04 +00:00
2022-07-29 13:17:30 +00:00
fn main() -> Result<(), error::Error> {
2022-07-29 12:50:04 +00:00
Ok(())
2022-04-09 16:25:45 +00:00
}