providers utility endpoint

This commit is contained in:
Ian 2014-04-20 18:46:37 -07:00
parent 73025e6d57
commit 90ffab09bd

6
app.js
View File

@ -22,15 +22,15 @@ app.use(express.bodyParser());
// App
/* Homepage */
app.get('/', function(req, res) {
fs.readFile(__dirname + '/views/index.html', 'utf8', function(err, text){
res.send(text);
});
});
app.get('/providers/us', function(req, res) {
res.send(providers.us);
app.get('/providers/:region', function(req, res) {
// Utility function, just to check the providers currently loaded
res.send(providers[req.params.region]);
});
app.post('/text', function(req, res) {