reformateado entity_service

This commit is contained in:
Daniel Cortes
2020-06-16 23:26:03 -04:00
parent cb43e39aca
commit 7a334c4da3

View File

@@ -4,7 +4,7 @@ let baseUrl = `${process.env.REACT_APP_API_SERVER}/api/brainz`;
export async function getArtist(mbid) { export async function getArtist(mbid) {
const url = `${baseUrl}/artist/${mbid}`; const url = `${baseUrl}/artist/${mbid}`;
const response = await axios.get(url); const response = await axios.get(url)
return response.data return response.data
} }