Complete backtracking, restriction violations, split model.rs into multiple files

This commit is contained in:
2026-01-11 10:44:25 +02:00
parent e11e1376eb
commit 53f8695572
11 changed files with 998 additions and 489 deletions

View File

@@ -1,6 +1,6 @@
// here lies the logic for the export of the final schedule into docx/pdf formats
use crate::model::{MonthlySchedule, WeeklySchedule};
use crate::schedule::MonthlySchedule;
#[derive(Debug)]
pub enum FileType {
@@ -54,12 +54,6 @@ impl MonthlySchedule {
}
}
impl Export for WeeklySchedule {
fn export(&self, file_type: FileType) {
todo!()
}
}
#[cfg(test)]
mod tests {
use rstest::rstest;