wipe/src/main.rs

9 lines
87 B
Rust
Raw Normal View History

2022-07-29 12:50:04 +00:00
mod error;
mod term;
use error::Error;
fn main() -> Result<(), Error> {
Ok(())
2022-04-09 16:25:45 +00:00
}