#![allow(dead_code)]
use anyhow::Result;
pub struct JobExecutor;
impl JobExecutor {
pub fn new() -> Self {
Self
}
pub async fn submit<F, T>(&self, _job: F) -> Result<T>
where
F: std::future::Future<Output = Result<T>>,
{
unimplemented!("job executor submit not implemented")
}
}