Files
talk/app.js
T
2016-11-03 16:49:03 -06:00

14 lines
298 B
JavaScript

/* This is the entrypoint for the Talk Platform server. */
// Initialize application framework.
const express = require('express');
const bodyParser = require('body-parser');
const app = express();
app.use(bodyParser.json());
app.use('/api/v1', require('./routes/api'));
module.exports = app;