phonograph/phono-server/src/worker.rs

11 lines
227 B
Rust
Raw Normal View History

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