Skip to main content

hermes_bot/
lib.rs

1//! Hermes library — core types and functionality for integration tests.
2//!
3//! This library crate exposes internal types to integration tests while
4//! keeping the main binary logic in `main.rs`.
5
6pub mod agent;
7pub mod config;
8pub mod error;
9pub mod session;
10pub mod slack;
11pub mod sync;
12pub mod util;
13
14// Re-export commonly used types for convenience
15pub use error::{HermesError, Result};