setup basic app
This commit is contained in:
parent
2cb5dbd22c
commit
b37891af49
7 changed files with 1207 additions and 2 deletions
12
src/job.rs
Normal file
12
src/job.rs
Normal 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!()
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue