This commit is contained in:
RingOfStorms (Joshua Bell) 2023-12-11 00:08:17 -06:00
parent cb2d876e94
commit 06e67f551b
3 changed files with 315 additions and 2 deletions

View file

@ -6,12 +6,12 @@ use std::{str::FromStr, time::Instant};
static DAY: u8 = TODO;
#[derive(Debug, Builder, Clone)]
#[derive(Debug, Clone)]
struct Todo {}
impl Todo {
fn new(s: &str) -> Result<Self> {
Ok(TodoBuilder::default().build()?)
Ok(Todo {})
}
}