kowalski_web_agent/
lib.rs

1pub mod agent;
2pub mod config;
3pub mod error;
4
5pub use agent::WebAgent;
6pub use config::WebAgentConfig;
7pub use error::WebAgentError;
8
9// Re-export common types
10pub use kowalski_core::config::Config;
11pub use kowalski_core::error::KowalskiError;
12pub use kowalski_core::logging;