1//! All the data sent between egui and the backend 2 3pub mod input; 4mod key; 5pub mod output; 6mod user_data; 7 8pub use key::Key; 9pub use user_data::UserData;