Initial commit

This commit is contained in:
2022-09-08 17:19:20 -04:00
commit cb3c6062c7
22 changed files with 5061 additions and 0 deletions

11
src/lib.rs Normal file
View File

@@ -0,0 +1,11 @@
#![warn(clippy::all, rust_2018_idioms)]
pub use app::App;
mod app;
mod diff;
mod editops;
mod elf;
mod jobs;
mod obj;
mod views;