gui_server_api/msg.rs
1// SPDX-FileCopyrightText: 2024 Foundation Devices, Inc. <hello@foundation.xyz>
2// SPDX-License-Identifier: GPL-3.0-or-later
3
4mod camera;
5mod capture;
6mod framebuffer;
7mod keyboard;
8mod navigation;
9mod register;
10mod scalar;
11#[cfg(not(keyos))]
12mod simulator;
13
14pub use camera::*;
15pub use capture::*;
16pub use framebuffer::*;
17pub use keyboard::*;
18pub use navigation::*;
19pub use register::*;
20pub use scalar::*;
21#[cfg(not(keyos))]
22pub use simulator::*;