2026-09-03 09:12:38 -07:00
|
|
|
/// 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;
|
2026-09-03 09:15:35 -07:00
|
|
|
pub mod learn;
|
2026-09-03 09:12:38 -07:00
|
|
|
|
|
|
|
|
pub use query::*;
|
|
|
|
|
pub use ingest::*;
|
2026-09-03 09:15:35 -07:00
|
|
|
pub use learn::*;
|