export function getTrack(endpoint: string, id: string): Promise<Response> {
  return fetch(`${endpoint}/tracks/${id}`);
}