mirror of
https://github.com/wassname/talk.git
synced 2026-06-29 22:01:13 +08:00
11 lines
226 B
JavaScript
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;
|