rsbot 0.2.3

Simulate keypresses with Rust!
Documentation
extern crate rsbot;

fn main() {
	std::thread::sleep(std::time::Duration::from_secs(1));
	let bot = rsbot::Bot::new();

	bot.type_keys("hello");
}