oneuptime/Realtime/index.ts

10 lines
278 B
TypeScript
Raw Normal View History

2022-05-31 13:57:15 +00:00
import { ExpressApplication } from 'CommonServer/Utils/Express';
2022-05-24 16:46:21 +00:00
import App from 'CommonServer/Utils/StartServer';
export const APP_NAME: string = 'realtime';
2022-05-31 13:57:15 +00:00
const app: ExpressApplication = App(APP_NAME);
2022-02-28 12:00:02 +00:00
2021-07-28 13:57:14 +00:00
app.use('/realtime', require('./api/realtime'));
2022-02-25 13:22:20 +00:00
export default app;