use anyhow::Result; use tracing::Instrument as _; use crate::app_state::AppState; pub async fn run_worker(_state: AppState) -> Result<()> { async move { Ok(()) } .instrument(tracing::debug_span!("run_worker()")) .await }