Set up runner subcommand
This commit is contained in:
parent
7635af88cd
commit
4f69f5cb21
3 changed files with 25 additions and 0 deletions
13
src/runner.rs
Normal file
13
src/runner.rs
Normal file
|
|
@ -0,0 +1,13 @@
|
|||
use tracing::error;
|
||||
|
||||
pub struct Runner {}
|
||||
|
||||
impl Runner {
|
||||
pub fn new() -> Self {
|
||||
Self {}
|
||||
}
|
||||
|
||||
pub async fn run(&self) {
|
||||
error!("Runner not yet implemented");
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue