"""Logic for track.""" from pricing.models import ows_track def get_track_by_track_id(track_id): """Retrieve track. Args: track_id (int): the track identifier. Returns: response.Response: the track. """ return ows_track.get_track_by_track_id(track_id)