Skip to content

Commit

Permalink
ready to submit
Browse files Browse the repository at this point in the history
  • Loading branch information
itsMikeLowrey committed Jun 9, 2023
1 parent e3783eb commit 78fa949
Show file tree
Hide file tree
Showing 9 changed files with 2,172 additions and 31 deletions.
16 changes: 16 additions & 0 deletions netlify/functions/submitOrder.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
exports.handler = async (event) => {
try {
console.log('ran')
return {
statusCode: 200,
body: ''
}
}
catch (error) {
console.log(error)
return {
statusCode: 500,
body: ''
}
}
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
},
"dependencies": {
"axios": "^1.4.0",
"libsodium-wrappers": "^0.7.11",
"mongodb": "^5.6.0",
"vue": "^3.2.47",
"vue-router": "4"
Expand Down
Loading

0 comments on commit 78fa949

Please sign in to comment.