Skip to content

Instantly share code, notes, and snippets.

@harunpeksen
Created March 7, 2022 20:48
Show Gist options
  • Save harunpeksen/6c2537033b268ffabe07ebc3f38526af to your computer and use it in GitHub Desktop.
Save harunpeksen/6c2537033b268ffabe07ebc3f38526af to your computer and use it in GitHub Desktop.
grpcServer := grpc.NewServer()
// Register Product Service
product_pb.RegisterProductServer(grpcServer, &productServer{})
// Register Billing Service
billing_pb.RegisterBillingServer(grpcServer, &billingServer{})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment