This repo contains various implementations of a basic server built in go that can execute the following
operations:
Divide
Max
Min
Multiply
Pow
Subtract
Sum
Purpose
The purpose of the various implementations provided in this repository is to give an example of how/when different
implementation styles should be followed. The implementations compared are go-kit, standard gRPC, and standard HTTP.
The goal is to simply compare coding style and readability. Performance and efficiency of execution will not be compared.