urls-le 0.1.0

Extract every URL from a codebase, with its protocol and exact position
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()
}