12 lines
158 B
Rust
12 lines
158 B
Rust
// client/src/lib.rs
|
|
|
|
#![forbid(unsafe_code)]
|
|
|
|
pub mod app;
|
|
pub mod handshake;
|
|
pub mod input;
|
|
pub mod layout;
|
|
pub mod output;
|
|
|
|
pub use app::LesavkaClientApp;
|