trailcache_core/lib.rs
1//! Trailcache Core - shared library for API client, models, cache, and auth.
2//!
3//! This crate contains the platform-independent core logic used by both
4//! the TUI and GUI frontends.
5
6pub mod api;
7pub mod auth;
8pub mod cache;
9pub mod config;
10pub mod models;
11pub mod summaries;
12pub mod utils;