kowalski_agent_template/
lib.rs

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