use showpid::config::Config;
use showpid::platform::ActivateWindow;
use showpid::platform::WindowActivator;
fn main() {
let config = Config::new(1234).with_verbose(true);
let mut activator = WindowActivator::new(config);
match activator.execute() {
Ok(()) => println!("Window activated successfully!"),
Err(e) => eprintln!("Failed to activate window: {}", e),
}
}