//! `csd state` — report the hybrid-detector verdict for one session.
usecrate::detect::{self, State};usecrate::error::Result;usecrate::session::Session;pubfnrun(session_name:&str)->Result<State>{let session =Session::load(session_name)?;detect::detect(&session)}