Skip to main content

garmin_cli/db/
mod.rs

1//! Database models for Garmin data
2//!
3//! This module contains data models used throughout the application.
4//! The models were originally designed for DuckDB but are now used with
5//! Parquet storage for concurrent read access.
6
7pub mod models;
8
9pub use models::*;