Move all wayland files into wayland namespace

This commit is contained in:
2025-04-26 02:14:08 -07:00
parent 0244bba6e7
commit 1e5be37996
9 changed files with 16 additions and 30 deletions

View File

@@ -1,14 +1,8 @@
#![feature(unix_socket_ancillary_data)]
use std::error::Error;
mod wl_client;
mod wl_registry;
mod wl_shm;
mod vec_utils;
mod shm;
mod surface;
mod layer_shell;
use wl_client::WlClient;
mod wayland;
use wayland::wl_client::WlClient;
fn main() -> Result<(), Box<dyn Error>> {
let mut wl_client = WlClient::new()?;