phonograph/phono-server/src/worker.rs
2025-11-19 02:14:43 +00:00

10 lines
227 B
Rust

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