I'm brand new to gRPC coming from websockets using
crossbar.io.
The way we are used to working is basically services and clients all connect to a single router which facilitates communication between services and consumers/clients
Can someone tell me how gRPC web clients talk to multiple backend services via a single connection, is it more like REST where if a client wants to call the auth service is posts to /auth and to get a profile it does a get request to /profile
or do I need to create a single backend service to act as a server/router which other services register to?