mirror of
https://github.com/kristoferssolo/Advent-of-Code.git
synced 2025-10-21 18:00:35 +00:00
19 lines
325 B
Rust
19 lines
325 B
Rust
use color_eyre::Result;
|
|
|
|
pub fn process(input: &str) -> Result<()> {
|
|
todo!("day xx - part 1");
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_process() -> Result<()> {
|
|
let input = "";
|
|
todo!("haven't built test yet");
|
|
assert_eq!("", process(input)?);
|
|
Ok(())
|
|
}
|
|
}
|