1//! This crate contains an application to build workouts in the mrc format.
2#![allow(clippy::large_enum_variant)]
34/// Definitions of all base types to construct a workout.
5pub mod workout_data;
67/// The GUI of the Workout Generator application.
8pub mod gui;