Skip to content

Instantly share code, notes, and snippets.

@eduardopc
Created April 30, 2020 00:55
Show Gist options
  • Save eduardopc/23852e18c17d8a51dfeb1a9610f2e62b to your computer and use it in GitHub Desktop.
Save eduardopc/23852e18c17d8a51dfeb1a9610f2e62b to your computer and use it in GitHub Desktop.
import 'dotenv/config';
import axios from 'axios';
const baseUrl = `http://localhost:${process.env.MOCK_SERVER_PORT}`;
const fetchCharacters = async () => {
return await axios.get(`${baseUrl}/characters`);
};
module.exports = {
fetchCharacters
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment