gglib_core/contracts/http/mod.rs
1#![doc = include_str!("README.md")]
2pub mod daemon;
3pub mod hf;
4
5// Re-export for convenience
6pub use hf::*;
7// `daemon` stays qualified: its names (HEALTH_PATH, MODELS_LIST_PATH) are
8// generic enough that a glob would make the call site ambiguous about which
9// surface's contract it means.