Implement internal runner

This commit is contained in:
Joscha 2023-08-12 14:16:22 +02:00
parent d15d6588f7
commit 416e3e6aa1
7 changed files with 247 additions and 26 deletions

View file

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