Files
poimen-memory/crates/mem-cli/src/handlers/mod.rs
T

13 lines
249 B
Rust
Raw Normal View History

/// HTTP Handler Helpers
///
/// Extracted from http_server.rs to reduce complexity.
/// Each handler has its own params struct with validation.
pub mod query;
pub mod ingest;
pub mod learn;
pub use query::*;
pub use ingest::*;
pub use learn::*;