Files
organic/src/compare/mod.rs
Tom Alexander d5b1014fe4 Unify the standard properties checks in diff.
Instead of copy+pasting them into each compare function, we now call a shared function from a handful of places.
2023-09-23 21:05:56 -04:00

9 lines
148 B
Rust

mod compare;
mod diff;
mod elisp_fact;
mod parse;
mod sexp;
mod util;
pub use compare::run_anonymous_compare;
pub use compare::run_compare_on_file;