2025-06-08 22:24:14 -05:00
|
|
|
// client/src/lib.rs
|
|
|
|
|
|
2025-06-08 04:11:58 -05:00
|
|
|
#![forbid(unsafe_code)]
|
|
|
|
|
|
|
|
|
|
pub mod app;
|
2026-04-10 15:56:18 -03:00
|
|
|
mod app_support;
|
2025-12-01 11:38:51 -03:00
|
|
|
pub mod handshake;
|
2025-06-08 04:11:58 -05:00
|
|
|
pub mod input;
|
2026-04-13 23:11:35 -03:00
|
|
|
pub mod launcher;
|
2025-06-29 04:54:39 -05:00
|
|
|
pub mod layout;
|
2025-12-01 11:38:51 -03:00
|
|
|
pub mod output;
|
2026-04-08 20:00:14 -03:00
|
|
|
pub mod paste;
|
2025-06-08 04:11:58 -05:00
|
|
|
|
2025-06-23 07:18:26 -05:00
|
|
|
pub use app::LesavkaClientApp;
|