mirror of
https://github.com/jambonz/jambonz-feature-server.git
synced 2025-12-20 08:40:38 +00:00
12 lines
347 B
JavaScript
12 lines
347 B
JavaScript
const api = require('express').Router();
|
|
|
|
api.use('/createCall', require('./create-call'));
|
|
api.use('/updateCall', require('./update-call'));
|
|
api.use('/startConference', require('./start-conference'));
|
|
|
|
// health checks
|
|
api.get('/', (req, res) => res.sendStatus(200));
|
|
api.get('/health', (req, res) => res.sendStatus(200));
|
|
|
|
module.exports = api;
|