mirror of
https://github.com/shadoll/playing_now_2_mm.git
synced 2025-12-20 06:29:52 +00:00
10 lines
262 B
Python
10 lines
262 B
Python
from mattermost import Mattermost
|
|
|
|
class Music:
|
|
def __init__(self, connector):
|
|
self.mattermost = Mattermost()
|
|
self.connector = connector()
|
|
|
|
def get_current_track_info(self) -> tuple:
|
|
return self.connector.get_current_track_info()
|