Skip to content

Commit 2b0d98d

Browse files
committed
wrkflow-k-wrk
1 parent 388b955 commit 2b0d98d

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

auth-service/src/presentation/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ app.use('*',(req:Request,res:Response)=>{
3030
app.use(errorHandler)
3131

3232
app.listen(PORT,() => {
33-
console.log(`auth server running on port: http://localhost${PORT}`);
33+
console.log(`auth server running on ports: http://localhost${PORT}`);
3434
})
3535

3636
export default app;

chat-service/src/presentation/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ app.use(routes(fullDependencies));
4444
app.use(errorHandler)
4545

4646
server.listen(PORT,() => {
47-
console.log(`Chat server running on port: http://localhost${PORT}`);
47+
console.log(`Chat server running on ports: http://localhost${PORT}`);
4848
})
4949

5050
export default app;

course-srv/src/presentation/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ app.use(errorHandler)
5151

5252

5353
app.listen(PORT,() => {
54-
console.log(`connected to course service at http://localhost:${PORT}`);
54+
console.log(`connected to course services at http://localhost:${PORT}`);
5555
})
5656

5757
export default app;

notification-service/src/presentation/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ app.get("/",(req:Request, res:Response) => {
2222
app.use("/notification", notificationRoutes(dependencies))
2323

2424
app.listen(PORT,() => {
25-
console.log(`connected to notification service at http://localhost:${PORT}`);
25+
console.log(`connected to notification services at http://localhost:${PORT}`);
2626
})
2727

2828
export default app;

payment-srv/src/presentation/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ app.get("/",(req:Request, res:Response) => {
3333
app.use(routes(dependencies))
3434

3535
app.listen(PORT,() => {
36-
console.log(`connected to Payment service at http://localhost:${PORT}`);
36+
console.log(`connected to Payment services at http://localhost:${PORT}`);
3737
})
3838

3939
export default app;

0 commit comments

Comments
 (0)