Skip to content

Latest commit

 

History

History

golf_grpc

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Golf gRPC Service - C++ Implementation

This directory contains the gRPC service implementation for the golf application. It provides the remote procedure call interface for clients to interact with the golf service.

Related Projects

This gRPC service is part of a larger golf application ecosystem. Related components can be found in:

Features

  • gRPC service definition and implementation
  • Protocol buffer message handling
  • Client-server communication
  • Service discovery and registration

Building

This project uses Bazel for building:

bazel build //cpp/golf_grpc:...

Testing

bazel test //cpp/golf_grpc:...

Protocol Buffers

This service uses protocol buffers for data serialization and gRPC communication. The proto definitions can be found in the protos directory.

IDE Support

For optimal development experience, use CLion with the Bazel plugin or VSCode with the compile commands extractor as described in the main README.