//! # vnc_server
//!
//! A pure Rust VNC server library for Windows.
//!
//! ## Quick Start
//!
//! ```no_run
//! use vncrs::{VncServer, VncServerConfig};
//! use vncrs::capture::scrap::ScrapCapture;
//! use vncrs::input::enigo_input::EnigoInput;
//!
//! let config = VncServerConfig::new()
//! .port(5900)
//! .password("secret")
//! .name("My Desktop");
//!
//! let capture = ScrapCapture::new().unwrap();
//! let input = EnigoInput::new();
//!
//! let mut server = VncServer::new(capture, input, config);
//! server.listen().unwrap();
//! ```
pub use VncServerConfig;
pub use ;
pub use VncServer;