Let's add some examples to show people how to get started. The two that come to mind immediately are:
- how to hook into gRPC
- how to hook into HTTP mux
I really liked the way grpc-go set this up and would like to follow the example they set. The directory structure is:
examples/
|- features/
|- periodic-check
|- stream-check
|- comparative-check
|- error-rate-check
|- integrations/
|- grpc
|- http
Each directory contains a main.go file demonstrating the given feature / integration and a README.md that describes how to run it (mostly using go run.
Let's add some examples to show people how to get started. The two that come to mind immediately are:
I really liked the way grpc-go set this up and would like to follow the example they set. The directory structure is:
Each directory contains a
main.gofile demonstrating the given feature / integration and aREADME.mdthat describes how to run it (mostly usinggo run.