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

6 lines
130 B
Rust
Raw Normal View History

2025-07-04 08:05:43 +09:00
#[cfg(feature="macros")]
2025-08-05 08:17:35 +09:00
pub use caretta_macros::Runnable;
2025-07-04 08:05:43 +09:00
pub trait Runnable {
2025-08-21 07:40:33 +09:00
async fn run(self, app_name: &'static str);
}