open_browser/lib.rs
1//! # open-browser
2//!
3//! Placeholder crate for agentic browser access and automation.
4//!
5//! > **Early development** - this crate is under active construction.
6
7/// Placeholder - real API coming soon.
8pub fn version() -> &'static str {
9 env!("CARGO_PKG_VERSION")
10}
11
12#[cfg(test)]
13mod tests {
14 #[test]
15 fn reports_version() {
16 assert_eq!(crate::version(), "0.0.1");
17 }
18}