//! Structured JSON extraction from the ingested DuckDB.
//!//! Each kind is its own submodule; this module just dispatches.
pubmodsessions;usecrate::cli::{ExtractArgs, ExtractKind};pubfnrun(args: ExtractArgs){match args.kind {ExtractKind::Sessions(a)=>sessions::run(a),}}