browsing 0.1.4

Lightweight MCP/API for browser automation: navigate, get content (text), screenshot. Parallelism via RwLock.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Tools and actions registry

pub mod handlers;
pub mod registry;
pub mod service;
pub mod views;

#[cfg(test)]
mod service_test;

pub use service::Tools;
pub use views::{ActionModel, ActionRegistry, RegisteredAction};