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 http_client;