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') })