limit_cli/tools/browser/handlers/mod.rs
1//! Handler modules for browser tool
2//!
3//! Each module contains handlers for a specific category of browser actions.
4//! These handlers extract arguments and call the appropriate client methods.
5
6pub mod dialog;
7pub mod interaction;
8pub mod navigation;
9pub mod query;
10pub mod settings;
11pub mod state;
12pub mod storage;
13pub mod tabs;
14pub mod wait;