autocontrol 0.1.0

`autocontrol` 是一个基于 Rust 开发的 Windows 自动化控制库,它封装了 Windows 原生 API,提供简单、安全、高性能的自动化接口。
1
2
3
4
5
6
7
8
pub mod control;
pub mod error;
pub mod keyboard;
pub mod platform;

pub use control::AutoControl;
pub use error::{AutoError, Result};
pub use keyboard::Key;