An open API service indexing awesome lists of open source software.

https://github.com/cak/compass


https://github.com/cak/compass

Last synced: 5 months ago
JSON representation

Awesome Lists containing this project

README

          

# compass
Web Application Recon Tool (BETA)

## Example

```Rust
fn main() -> Result<(), CompassError> {
let target = String::from("target_url");
let res = compass::fetch_pretty(&target)?;
println!("{}", res);
Ok(())
}
```