mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 15:24:55 +00:00
10 lines
278 B
TypeScript
10 lines
278 B
TypeScript
import { ExpressApplication } from 'CommonServer/Utils/Express';
|
|
import App from 'CommonServer/Utils/StartServer';
|
|
|
|
export const APP_NAME: string = 'realtime';
|
|
const app: ExpressApplication = App(APP_NAME);
|
|
|
|
app.use('/realtime', require('./api/realtime'));
|
|
|
|
export default app;
|