caretta-sync/core/src/utils/runnable.rs

3 lines
64 B
Rust
Raw Normal View History

pub trait Runnable {
fn run(self, app_name: &'static str);
}