setup basic app

This commit is contained in:
Antoine Martin 2021-03-29 02:01:53 +02:00
parent 2cb5dbd22c
commit b37891af49
7 changed files with 1207 additions and 2 deletions

12
src/job.rs Normal file
View file

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