seekr 0.1.2

Web based all in one OSINT tool
Documentation
1
2
3
4
5
6
7
8
use anyhow::Result;
use seekr::{cli, run};

#[tokio::main]
async fn main() -> Result<()> {
    let args = cli::parse();
    Ok(run(args).await?)
}