//! # showpid
//!
//! Cross-platform library and CLI utility to bring a window to foreground by PID.
//!
//! Supports Windows, Linux (X11), and macOS.
//!
//! ## Library Usage
//!
//! ```rust
//! use showpid::Config;
//! use showpid::platform::WindowActivator;
//!
//! let config = Config::new(1234).with_verbose(true);
//! let mut activator = WindowActivator::new(config);
//! activator.activate()?;
//! ```
pub use Config;
pub use ;
pub use WindowInfo;