ceres_client/
lib.rs

1//! Ceres Client - HTTP clients for external APIs
2//!
3//! This crate provides HTTP clients for interacting with:
4//!
5//! - [`ckan`] - CKAN open data portals
6//! - [`gemini`] - Google Gemini embeddings API
7//!
8//! # Overview
9//!
10//! The clients handle authentication, request building, response parsing,
11//! and error handling for their respective APIs.
12
13pub mod ckan;
14pub mod gemini;
15
16// Re-export main client types
17pub use ckan::CkanClient;
18pub use gemini::GeminiClient;