json_fix/
lib.rs

1// src/lib.rs
2mod fixer;
3
4pub mod prelude {
5    pub use crate::fixer::{fix_json, FixReport};
6}