summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/app.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/app.js b/src/app.js
index 3e1a28c..04d192a 100644
--- a/src/app.js
+++ b/src/app.js
@@ -5,9 +5,6 @@ const app = express();
app.post('/sms', (req, res) => {
const twiml = new MessagingResponse();
-
- twiml.message('The Robots are coming! Head for the hills!');
-
res.type('text/xml').send(twiml.toString());
});