Newer
Older
from src.rest.models.play_log_entry import PlayLogEntry # noqa: E501
from src.rest import util
def current_track(): # noqa: E501
"""Get current track
Retrieves the currently playing track. # noqa: E501
:rtype: PlayLogEntry
"""
def list_tracks(page=None, limit=None): # noqa: E501
Lists the track-service entries for a given page. # noqa: E501
:param page: The number of items to skip before starting to collect the result set
:type page: int
:param limit: The numbers of items to return per page
:type limit: int
:rtype: List[PlayLogEntry]
"""