Files
RadioPlayer/player_modules.py
T
2025-10-11 15:54:28 +02:00

5 lines
149 B
Python

class PlayerModule:
def on_new_playlist(self, playlist: list[str]):
pass
def on_new_track(self, track: str, index: int):
pass