forked from AbleOS/ableos
13 lines
175 B
Rust
13 lines
175 B
Rust
pub struct Compositor;
|
|
impl Compositor {
|
|
pub fn new() -> Self {
|
|
Self
|
|
}
|
|
}
|
|
|
|
impl Default for Compositor {
|
|
fn default() -> Self {
|
|
Self::new()
|
|
}
|
|
}
|