initial commit

This commit is contained in:
Zacharias-Brohn
2025-12-12 22:11:20 +01:00
commit 5d47177fbf
19 changed files with 11695 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
//! ZTerm - A GPU-accelerated terminal emulator for Wayland.
//!
//! This library provides shared functionality between the daemon and client.
pub mod client;
pub mod config;
pub mod daemon;
pub mod keyboard;
pub mod protocol;
pub mod pty;
pub mod renderer;
pub mod session;
pub mod terminal;
pub mod window_state;