From 488323e9bf4b0ecdaec582c69ad8fe07ae7ab782 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Sun, 9 Apr 2023 20:39:51 -0400 Subject: [PATCH] Added comments --- app.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app.js b/app.js index 035d928..4bc3f91 100644 --- a/app.js +++ b/app.js @@ -14,9 +14,12 @@ app.post('/api/v1/user/new', (req, res) => { }) // Text Routes +// Add a new text app.post('/api/v1/text/new', (req, res) => { res.send('Create new text') }) + +// Queue a text for sending app.post('/api/v1/text/queue', (req, res) => { res.send('Queue text') })