fleshing out the core a bit more

This commit is contained in:
Chris Cochrun 2024-10-06 05:51:39 -05:00
parent e05815e550
commit c8bb484a53
13 changed files with 497 additions and 9 deletions

11
src/rust/core/images.rs Normal file
View file

@ -0,0 +1,11 @@
pub struct Image {
title: String
}
#[cfg(test)]
mod test {
#[test]
pub fn test_image() {
assert_eq!(true, true)
}
}