phonograph/interim-server/src/worker.rs
2025-07-08 14:37:03 -07:00

10 lines
243 B
Rust

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
}