Initial import: Music_Server, MusicFree, catalog-sync

This commit is contained in:
2026-05-23 16:51:14 +08:00
commit 069af30dba
847 changed files with 179878 additions and 0 deletions
@@ -0,0 +1,13 @@
"""Catalog sync package for playlist harvesting and deduplicated downloads."""
from .db import REQUIRED_TABLES, initialize_database
from .models import CatalogSong, PlaylistCandidate, extract_artist_names, normalize_source_name
__all__ = [
"CatalogSong",
"PlaylistCandidate",
"REQUIRED_TABLES",
"extract_artist_names",
"initialize_database",
"normalize_source_name",
]