akern-gkgoat-fork/ableos/src/experiments/y_compositor/compositor.rs

13 lines
175 B
Rust

pub struct Compositor;
impl Compositor {
pub fn new() -> Self {
Self
}
}
impl Default for Compositor {
fn default() -> Self {
Self::new()
}
}