Finish part-1

This commit is contained in:
2025-12-03 17:21:19 +02:00
parent 2ae6b63d6d
commit 6330105eeb
3 changed files with 92 additions and 12 deletions

View File

@@ -1,9 +1,7 @@
use miette::Result;
#[tracing::instrument]
#[allow(clippy::missing_panics_doc)]
#[allow(clippy::missing_errors_doc)]
pub fn process(input: &str) -> Result<usize> {
pub fn process(input: &str) -> miette::Result<usize> {
todo!("day xx - part 1");
Ok(0)
}
@@ -13,7 +11,7 @@ mod tests {
use super::*;
#[test]
fn test_process() -> Result<()> {
fn test_process() -> miette::Result<()> {
let input = "";
todo!("haven't built test yet");
let result = 0;