Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cak/compass
https://github.com/cak/compass
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/cak/compass
- Owner: cak
- License: mit
- Created: 2019-09-22T23:40:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-23T00:28:33.000Z (about 5 years ago)
- Last Synced: 2024-09-17T11:45:47.420Z (about 2 months ago)
- Language: Rust
- Size: 1.95 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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(())
}
```