pub mod gl; pub mod ipc; pub mod window; fn main() -> std::io::Result<()> { let ipc = ipc::Ipc::new()?; ipc.run(); Ok(()) }