lohr/src/job.rs
2021-03-29 02:01:53 +02:00

13 lines
186 B
Rust

pub struct Job {
repo: String,
}
impl Job {
pub fn new(repo: String) -> Self {
Self { repo }
}
pub fn run(&self) -> anyhow::Result<()> {
todo!()
}
}