From a71567577f00c33beacfde06884c1516b510f383 Mon Sep 17 00:00:00 2001 From: akeem Smith <118077209+AkeemESmith@users.noreply.github.com> Date: Wed, 1 Nov 2023 08:34:45 -0500 Subject: [PATCH] added comments to gRPC server --- test/grpcServer.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/grpcServer.js b/test/grpcServer.js index ca137919..4a54fbf9 100644 --- a/test/grpcServer.js +++ b/test/grpcServer.js @@ -2,6 +2,10 @@ const path = require('path'); const grpc = require('@grpc/grpc-js'); const protoLoader = require('@grpc/proto-loader'); +///////***** Attention *****/////// +//uncomment main('open') at the bottom of the file to start server +//////////////////////////////////// + // change PROTO_PATH to load a different mock proto file const PROTO_PATH = path.resolve(__dirname, './hw2.proto');