mrc_workout_creator/
lib.rs

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