feat: Added iced-ui and updated typegen for docs
Some checks failed
build / checks-matrix (push) Has been cancelled
build / checks-build (push) Has been cancelled
build / codecov (push) Has been cancelled
docs / docs (push) Has been cancelled

This commit is contained in:
uttarayan21
2025-11-18 16:45:43 +05:30
parent 729a0479ec
commit e50e08dc57
16 changed files with 3003 additions and 526 deletions

View File

@@ -1,5 +1,4 @@
mod errors;
mod ui;
use api::{JellyfinClient, JellyfinConfig};
use errors::*;
@@ -23,7 +22,10 @@ pub async fn main() -> Result<()> {
.await
.change_context(Error)?;
ui::ui(jellyfin);
#[cfg(feature = "iced")]
ui_iced::ui(jellyfin);
#[cfg(feature = "gpui")]
ui_gpui::ui(jellyfin);
Ok(())
}