diff --git a/src/lib.rs b/src/lib.rs index 11aa686..1b08fd8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -80,7 +80,6 @@ impl ValidationConfig { } } - /// Simple validation result for CLI pub struct ValidationResult { pub is_valid: bool, diff --git a/src/model.rs b/src/model.rs index 93f2818..98df459 100644 --- a/src/model.rs +++ b/src/model.rs @@ -109,13 +109,8 @@ pub struct Scenario { // Period with forever support #[derive(Debug, Clone)] pub enum Period { - Instant { - date: String, - }, - Duration { - start: String, - end: String, - }, + Instant { date: String }, + Duration { start: String, end: String }, Forever, }