Lab Page: https://pdos.csail.mit.edu/6.824/labs/lab-kvsrv.html
In this Lab, I created a simple KV server. In the src/kvsrv file, you can see my code.
I use uuid as the specific ID of every request. To avoid duplicate request, in the common.go, Request of RPC call must be unique.
This is a simple lab. What we have to do is to help build the RPC call and deal with easy error handling.
