mini_exercism 8.0.0

Minimalistic Rust library to interact with the Exercism.org APIs
1
2
3
4
5
6
7
//! Types related to submissions returned by the [Exercism website](https://exercism.org) v2 API.
//!
//! A submission is created when the user submits code for an exercise, either through the
//! Exercism online editor or the [Exercism CLI](https://exercism.org/docs/using/solving-exercises/working-locally).

pub mod analysis;
pub mod files;