Skip to main content

garmin_cli/cli/commands/
mod.rs

1pub 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    note_clear as activity_note_clear, note_get as activity_note_get,
12    note_set as activity_note_set, upload as upload_activity,
13};
14pub use auth::{login, logout, status};
15pub use devices::{get as get_device, history as device_history, list as list_devices};
16pub use health::{
17    blood_pressure, body_battery, body_battery_range, calories, endurance_score, fitness_age,
18    heart_rate, hill_score, hrv, hydration, insights, intensity_minutes, lactate_threshold,
19    performance_summary, personal_records, race_predictions, respiration, sleep, sleep_range, spo2,
20    steps, stress, stress_range, summary, training_readiness, training_readiness_range,
21    training_status, training_status_range, vo2max,
22};
23pub use profile::{settings as show_settings, show as show_profile};
24pub use sync::{clear as sync_clear, reset as sync_reset, run as sync_run, status as sync_status};
25pub use weight::{add as add_weight, latest as latest_weight, list as list_weight};