ServiceItems are loaded from lisp and converted to slides

This commit is contained in:
Chris Cochrun 2024-12-10 12:07:10 -06:00
parent cb7fa372a9
commit db39eb12b8
9 changed files with 283 additions and 125 deletions

View file

@ -16,7 +16,7 @@ pub enum ServiceItemKind {
Song(Song),
Video(Video),
Image(Image),
Presentation((Presentation, PresKind)),
Presentation(Presentation),
Content(Slide),
}
@ -26,7 +26,7 @@ impl std::fmt::Display for ServiceItemKind {
Self::Song(s) => "song".to_owned(),
Self::Image(i) => "image".to_owned(),
Self::Video(v) => "video".to_owned(),
Self::Presentation((p, k)) => "html".to_owned(),
Self::Presentation(p) => "html".to_owned(),
Self::Content(s) => "content".to_owned(),
};
write!(f, "{s}")