ServiceItems are loaded from lisp and converted to slides
This commit is contained in:
parent
cb7fa372a9
commit
db39eb12b8
9 changed files with 283 additions and 125 deletions
|
|
@ -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}")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue