summaryrefslogtreecommitdiffstats
path: root/src/runner.rs
blob: 7b9457302184ad4ab168735cb1d9acfa0fa1c5da (plain)
1
2
3
4
5
6
7
8
9
10
11
pub mod buildah;

use std::io;

use crate::types::*;

pub type Result<T> = io::Result<T>;

pub trait Runner {
	fn run(&self, task: &TaskRef) -> Result<()>;
}