use anyhow; mod wayland; mod process_point; use wayland::app::SimpleWindow; fn main() -> anyhow::Result<()> { SimpleWindow::run()?; Ok(()) }