zzzz_rt_logic 0.0.0

Runtime logic for the zzzz automation library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::convert::Infallible;

/// Runs jobs.
#[derive(Debug)]
pub struct JobRunner;

impl JobRunner {
    /// Runs the job.
    pub fn run() -> Result<(), Infallible> {
        Ok(())
    }
}