From 2d9ccd9b983c36d2ed2161473c59d21fea69770c Mon Sep 17 00:00:00 2001 From: Johhan Santana Date: Mon, 26 Jun 2017 17:02:31 -0400 Subject: [PATCH] deleted unused files --- api/kittens/index.js | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 api/kittens/index.js 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 };