Initializing a diagnostic tools. WIP

This commit is contained in:
John Livingston
2021-04-09 21:28:16 +02:00
parent 8b3763761b
commit 59cd78ee82
7 changed files with 115 additions and 5 deletions

View File

@ -1,5 +1,6 @@
import type { NextFunction, Request, Response } from 'express'
import { initWebchatRouter } from './webchat'
import { initSettingsRouter } from './settings'
async function initRouters (options: RegisterServerOptions): Promise<void> {
const { getRouter } = options
@ -8,6 +9,7 @@ async function initRouters (options: RegisterServerOptions): Promise<void> {
router.get('/ping', (req: Request, res: Response, _next: NextFunction) => res.json({ message: 'pong' }))
router.use('/webchat', await initWebchatRouter(options))
router.use('/settings', await initSettingsRouter(options))
}
export {