From 5f664935583f791db5e5df1ff03753b6cfeb7612 Mon Sep 17 00:00:00 2001 From: Gabriel Kaszewski Date: Fri, 20 Mar 2026 01:19:31 +0100 Subject: [PATCH] feat(api): add /library/shows and /library/shows/:name/seasons routes + season filter --- k-tv-backend/api/src/routes/library.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k-tv-backend/api/src/routes/library.rs b/k-tv-backend/api/src/routes/library.rs index 0bf443c..0ea76f4 100644 --- a/k-tv-backend/api/src/routes/library.rs +++ b/k-tv-backend/api/src/routes/library.rs @@ -22,7 +22,7 @@ use axum::{ response::IntoResponse, routing::{get, post, put}, }; -use domain::{ContentType, ILibraryRepository, LibrarySearchFilter, LibrarySyncAdapter, SeasonSummary, ShowSummary}; +use domain::{ContentType, ILibraryRepository, LibrarySearchFilter, LibrarySyncAdapter}; use serde::{Deserialize, Serialize}; use crate::{error::ApiError, extractors::{AdminUser, CurrentUser}, state::AppState};