Skip to content

Commit

Permalink
[FEAT] 캐라서비스 종료
Browse files Browse the repository at this point in the history
  • Loading branch information
leGit-y committed Nov 11, 2024
1 parent f30429b commit 39dd85a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class App {
const swaggerSpec = YAML.load(path.join(__dirname, '../swagger.yaml'))
app.use('/api-docs', swaggerUi.serve, swaggerUi.setup(swaggerSpec));

app.use("/v2", router);
// app.use("/v1", router);
app.get("/health", (req: Request, res: Response, next: NextFunction) => {
res.status(200).json({
status: 200,
Expand All @@ -25,11 +25,11 @@ class App {

app.use(globalExceptionHandler);

scheduler.deadline_alarm_1.start();
scheduler.deadline_alarm_2.start();
scheduler.deadline_alarm_3.start();
// scheduler.deadline_alarm_1.start();
// scheduler.deadline_alarm_2.start();
// scheduler.deadline_alarm_3.start();

scheduler.service_end_alarm.start();
// scheduler.service_end_alarm.start();

return app;
}
Expand Down

0 comments on commit 39dd85a

Please sign in to comment.