2022-08-16 17:00:26 +00:00

16 lines
278 B
Rust

///
pub struct Scheduler {}
impl std::fmt::Debug for Scheduler {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
f.debug_struct("Scheduler of api.kgon.identity").finish()
}
}
impl Scheduler {
///
pub fn new() -> Scheduler {
Scheduler {}
}
}