refactor: move Day struct to template module (#40)

This commit is contained in:
Felix Spöttel
2023-12-05 22:39:20 +01:00
committed by GitHub
parent 3260b731be
commit 9d064019c3
12 changed files with 16 additions and 21 deletions

View File

@@ -2,7 +2,7 @@
/// The approach taken is similar to how `aoc-readme-stars` handles this.
use std::{fs, io};
use crate::Day;
use crate::template::Day;
static MARKER: &str = "<!--- benchmarking table --->";