Files
Waywrite/src/main.rs

13 lines
153 B
Rust

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