Fix all the golint complaints about newly added changes

Do not use func(this *server), such generic names should not be used
for writing struct methods.
This commit is contained in:
Harshavardhana
2015-09-17 18:53:40 -07:00
parent 9e7e00e270
commit 1887114444
6 changed files with 37 additions and 21 deletions
+1
View File
@@ -21,6 +21,7 @@ import (
"github.com/gorilla/rpc/v2/json"
)
// Server new rpc server container
type Server struct {
*rpc.Server
}