Set up runner subcommand

This commit is contained in:
Joscha 2023-08-07 14:54:47 +02:00
parent 7635af88cd
commit 4f69f5cb21
3 changed files with 25 additions and 0 deletions

13
src/runner.rs Normal file
View 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");
}
}