Update Arch

This commit is contained in:
briandavidjoyner 2017-11-04 23:15:40 -04:00
parent 1c6b19178e
commit 38ae7d2ed7
2 changed files with 17 additions and 12 deletions

9
API.js Normal file
View file

@ -0,0 +1,9 @@
var express = require('express');
var router_API = express.Router([options]);
var options;
router_API.get('/route1', function(req, res) {
res.send('This worked');
});
module.exports = router_API;