stygian-graph 0.8.3

High-performance graph-based web scraping engine with AI extraction, multi-modal support, and anti-bot capabilities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Stygian CLI binary entry point

use stygian_graph::application::cli::run_cli;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    // Initialize tracing
    tracing_subscriber::fmt::init();

    // Run CLI
    run_cli().await
}