garmin_cli/cli/commands/
mod.rs1pub mod activities;
2pub mod auth;
3pub mod devices;
4pub mod health;
5pub mod profile;
6pub mod sync;
7pub mod weight;
8
9pub use activities::{
10 download as download_activity, get as get_activity, list as list_activities,
11 upload as upload_activity,
12};
13pub use auth::{login, logout, status};
14pub use devices::{get as get_device, history as device_history, list as list_devices};
15pub use health::{
16 blood_pressure, body_battery, body_battery_range, calories, endurance_score, fitness_age,
17 heart_rate, hill_score, hrv, hydration, insights, intensity_minutes, lactate_threshold,
18 performance_summary, personal_records, race_predictions, respiration, sleep, sleep_range, spo2,
19 steps, stress, stress_range, summary, training_readiness, training_status, vo2max,
20};
21pub use profile::{settings as show_settings, show as show_profile};
22pub use sync::{clear as sync_clear, reset as sync_reset, run as sync_run, status as sync_status};
23pub use weight::{add as add_weight, latest as latest_weight, list as list_weight};