mirror of
https://github.com/weyne85/rustdesk.git
synced 2025-10-29 17:00:05 +00:00
12 lines
231 B
Rust
12 lines
231 B
Rust
pub use self::capturer::Capturer;
|
|
pub use self::config::Config;
|
|
pub use self::display::Display;
|
|
pub use self::ffi::{CGError, PixelFormat};
|
|
pub use self::frame::Frame;
|
|
|
|
mod capturer;
|
|
mod config;
|
|
mod display;
|
|
pub mod ffi;
|
|
mod frame;
|