idk
Some checks are pending
/ test (push) Waiting to run

This commit is contained in:
Chris Cochrun 2025-12-16 09:38:03 -06:00
parent 56aad3942f
commit 0cd741f815

View file

@ -38,8 +38,13 @@ pub struct Text {
text: String, text: String,
} }
pub struct Image {
source: PathBuf,
}
pub enum SlideWidget { pub enum SlideWidget {
Text(Text), Text(Text),
Image(Image),
} }
#[derive(Debug, Clone)] #[derive(Debug, Clone)]