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

@@ -1,6 +1,6 @@
use std::process::{Command, Stdio};
use crate::Day;
use crate::template::Day;
pub fn handle(day: Day, release: bool, time: bool, submit_part: Option<u8>) {
let mut cmd_args = vec!["run".to_string(), "--bin".to_string(), day.to_string()];