export function artistSearch(endpoint: string, query: string): Promise<Response> {
  return fetch(`${endpoint}/users/search?query=${query}&app_name=Nuclear`);
}