mirror of
https://github.com/radio95-rnt/RadioPlayer.git
synced 2026-07-29 15:29:14 +02:00
5 lines
149 B
Python
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 |