mirror of
https://github.com/OneUptime/oneuptime
synced 2024-11-22 23:30:10 +00:00
9 lines
232 B
TypeScript
9 lines
232 B
TypeScript
import { ExpressApplication } from 'CommonServer/Utils/Express';
|
|
import App from 'CommonServer/Utils/StartServer';
|
|
|
|
export const APP_NAME: string = 'integration';
|
|
|
|
const app: ExpressApplication = App(APP_NAME);
|
|
|
|
export default app;
|