tablejohn/src/worker/run/repo.rs
2023-08-12 14:21:48 +02:00

15 lines
258 B
Rust

use std::sync::{Arc, Mutex};
use tokio::sync::mpsc;
use crate::somehow;
use super::{Run, RunStatus};
pub async fn run(
run: Arc<Mutex<Run>>,
hash: String,
abort_rx: mpsc::UnboundedReceiver<()>,
) -> somehow::Result<RunStatus> {
todo!()
}