refactor: extract PathHelper to Services/Common for reusability

Moved PathHelper from DeezerDownloadService to Services/Common/ to:
- Remove awkward dependency of Qobuz on Deezer namespace
- Make path utilities reusable by all services
- Improve code organization and clarify dependencies

Updated imports in DeezerDownloadService, QobuzDownloadService,
BaseDownloadService, and DeezerDownloadServiceTests.
This commit is contained in:
V1ck3s
2026-01-08 20:00:05 +01:00
parent ce779b3c8a
commit 09ee618ac8
5 changed files with 126 additions and 111 deletions

View File

@@ -4,7 +4,6 @@ using octo_fiesta.Models.Download;
using octo_fiesta.Models.Search;
using octo_fiesta.Models.Subsonic;
using octo_fiesta.Services.Local;
using octo_fiesta.Services.Deezer;
using TagLib;
using IOFile = System.IO.File;