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

@@ -1,6 +1,7 @@
using octo_fiesta.Services;
using octo_fiesta.Services.Deezer;
using octo_fiesta.Services.Local;
using octo_fiesta.Services.Common;
using octo_fiesta.Models.Domain;
using octo_fiesta.Models.Settings;
using octo_fiesta.Models.Download;