From c0292e0a579320a1c693076a574f1b91a8df77f6 Mon Sep 17 00:00:00 2001 From: Bronwen Date: Sun, 22 Nov 2020 12:48:41 -0500 Subject: [PATCH] serverless test!!! :tada: --- api/palette.js | 3 +++ package.json | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100644 api/palette.js create mode 100644 package.json diff --git a/api/palette.js b/api/palette.js new file mode 100644 index 0000000..247b7d7 --- /dev/null +++ b/api/palette.js @@ -0,0 +1,3 @@ +module.exports = function(req, res) { + res.end('HELLO WORLD'); +} \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..ed0ed5d --- /dev/null +++ b/package.json @@ -0,0 +1,8 @@ +{ + "name": "colorhunt", + "version": "1.0.0", + "main": "index.js", + "repository": "https://github.com/marcus13345/colorhunt.git", + "author": "Bronwen ", + "license": "MIT" +}