diff --git a/api/kittens/index.js b/api/kittens/index.js deleted file mode 100644 index 115090c..0000000 --- a/api/kittens/index.js +++ /dev/null @@ -1,12 +0,0 @@ -import axios from 'axios'; -/** - * Get the response of the api call to get the kitten list. - * If you want to create your api check this repository - * https://github.com/jsantana90/nextjs-express-boilerplate - * @return {AxiosPromise} - */ -function getKittens() { - return axios.get('https://nextjs-express-boilerplate.now.sh/api/kittens'); -} - -export { getKittens };