string-le 0.2.2

Extract every string in a codebase, with its position, so a person can read them
1
2
3
4
5
6
7
8
9
10
11
12
mod cli;
mod extract;
mod mcp;
mod scan;
mod walk;

#[cfg(test)]
mod testing;

fn main() -> std::process::ExitCode {
    cli::run()
}