lohr/src/job.rs

13 lines
186 B
Rust
Raw Normal View History

2021-03-29 02:01:53 +02:00
pub struct Job {
repo: String,
}
impl Job {
pub fn new(repo: String) -> Self {
Self { repo }
}
pub fn run(&self) -> anyhow::Result<()> {
todo!()
}
}