tablejohn/src/runner.rs
2023-08-07 14:54:47 +02:00

13 lines
191 B
Rust

use tracing::error;
pub struct Runner {}
impl Runner {
pub fn new() -> Self {
Self {}
}
pub async fn run(&self) {
error!("Runner not yet implemented");
}
}