feat(stream): add Stream model for managing streaming service links to sounds; update Sound model to include relationship with Stream

This commit is contained in:
JSC
2025-07-05 18:31:47 +02:00
parent 024c58f013
commit fac4fdf212
3 changed files with 177 additions and 1 deletions

View File

@@ -4,7 +4,8 @@ from .plan import Plan
from .playlist import Playlist
from .playlist_sound import PlaylistSound
from .sound import Sound
from .stream import Stream
from .user import User
from .user_oauth import UserOAuth
__all__ = ["Plan", "Playlist", "PlaylistSound", "Sound", "User", "UserOAuth"]
__all__ = ["Plan", "Playlist", "PlaylistSound", "Sound", "Stream", "User", "UserOAuth"]