File tree Expand file tree Collapse file tree 6 files changed +6
-8
lines changed
Expand file tree Collapse file tree 6 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -19,10 +19,8 @@ const start = async () => {
1919 console . error ( error ) ;
2020 }
2121 app . listen ( 3000 , ( ) => {
22- console . log ( "auth service running on 3000" ) ;
22+ console . log ( "auth service running on 3000.. " ) ;
2323 } ) ;
2424} ;
2525
2626start ( ) ;
27-
28- //trigger
Original file line number Diff line number Diff line change 11import Link from "next/link" ;
22
3- const LandingPage = ( { currentUser , tickets } ) => {
3+ const LandingPage = ( { tickets } ) => {
44 return (
55 < div >
66 < h1 > Tickets</ h1 >
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ const start = async () => {
3030 process . on ( "SIGINT" , ( ) => natsWrapper . client . close ( ) ) ;
3131 process . on ( "SIGTERM" , ( ) => natsWrapper . client . close ( ) ) ;
3232
33- // start listening to nats streaming server
33+ // start listening to nats streaming server..
3434 new OrderCreateListener ( natsWrapper . client ) . listen ( ) ;
3535 } catch ( error ) {
3636 console . error ( error ) ;
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ const start = async () => {
5656 console . error ( error ) ;
5757 }
5858 app . listen ( 3000 , ( ) => {
59- console . log ( "orders service running on 3000" ) ;
59+ console . log ( "orders service running on 3000.. " ) ;
6060 } ) ;
6161} ;
6262
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ const start = async () => {
5252 console . error ( error ) ;
5353 }
5454 app . listen ( 3000 , ( ) => {
55- console . log ( "payments service running on 3000" ) ;
55+ console . log ( "payments service running on 3000.. " ) ;
5656 } ) ;
5757} ;
5858
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ const start = async () => {
5353 console . error ( error ) ;
5454 }
5555 app . listen ( 3000 , ( ) => {
56- console . log ( "tickets service running on 3000" ) ;
56+ console . log ( "tickets service running on 3000.. " ) ;
5757 } ) ;
5858} ;
5959
You can’t perform that action at this time.
0 commit comments