coman/core/
mod.rs

1//! Core module containing the main business logic
2//!
3//! This module provides the core functionality for managing collections
4//! and making HTTP requests, independent of CLI concerns.
5
6pub mod collection_manager;
7pub mod collection_manager_ops;
8pub mod endpoint_ops;
9pub mod errors;
10pub mod http_client;
11pub mod http_request;
12pub mod http_response;
13pub mod utils;