Files
advent-of-code-2023/day-12/src/part2.rs
T
Anthony Oteri 98c9b7e4a9 Day 12 - Part 1
Signed-off-by: Anthony Oteri <anthony.oteri@gmail.com>
2023-12-12 12:40:17 -05:00

19 lines
358 B
Rust

use crate::error::AocError;
#[tracing::instrument]
pub fn process(input: &str) -> miette::Result<u64, AocError> {
Ok(0)
}
#[cfg(test)]
mod tests {
use super::*;
#[test_log::test]
fn test_process() -> miette::Result<()> {
let input = include_str!("../test-input.txt");
assert_eq!(0, process(input)?);
Ok(())
}
}