feat: add a new empty struct Die

This commit is contained in:
2025-11-16 08:05:48 +01:00
parent 13d77f136e
commit a0f3d98fa2
3 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
use crate::*;
#[derive(Debug, Default, PartialEq, Clone)]
pub struct O {}
// impl std::fmt::Display for O {
// fn fmt(&self, _f: &mut std::fmt::Formatter) -> Result<(), std::fmt::Error> {
// todo!();
// }
// }
// #[cfg(test)]
// mod unit_tests {
// use super::*;
// }

View File

@@ -1,2 +1,3 @@
pub mod die;
pub mod failed_to;
pub mod handful;