adding base for drag n drop

This commit is contained in:
Chris Cochrun 2025-02-18 16:43:39 -06:00
parent f79e61f2ed
commit 1ce365fc04
8 changed files with 139 additions and 49 deletions

View file

@ -35,6 +35,10 @@ impl Content for Video {
fn kind(&self) -> ServiceItemKind {
ServiceItemKind::Video(self.clone())
}
fn to_service_item(&self) -> super::service_items::ServiceItem {
self.into()
}
}
impl From<Value> for Video {