Bug fix and README update

This commit is contained in:
kdeng00
2023-04-25 18:28:01 -04:00
parent 2bb608b188
commit 6b256b3912
2 changed files with 10 additions and 1 deletions
+9
View File
@@ -1,2 +1,11 @@
# TextSender-API # TextSender-API
An API used to send texts messages to multiple contacts. An API used to send texts messages to multiple contacts.
## Getting started
Installing dependencies
`npm install`
Running server
`node app.js`
+1 -1
View File
@@ -15,7 +15,7 @@ app.post('/api/v1/user/new', (req, res) => {
// User routes // User routes
// TODO: Not implemented // TODO: Not implemented
app.post('/api/v1/login'. (req, res) => { app.post('/api/v1/login', (req, res) => {
res.send('Implement'); res.send('Implement');
}) })