Files
talk/app.js
T
2016-11-01 11:54:30 -06:00

11 lines
226 B
JavaScript

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