Rename the RoveServer proto to Rove

This commit is contained in:
Marc Di Luzio 2020-06-13 10:43:35 +01:00
parent ccb34d4452
commit 856771dac7
5 changed files with 164 additions and 164 deletions

View file

@ -132,7 +132,7 @@ func (s *Server) Initialise(fillWorld bool) (err error) {
log.Fatalf("failed to listen: %v", err)
}
s.grpcServ = grpc.NewServer()
rove.RegisterRoveServerServer(s.grpcServ, s)
rove.RegisterRoveServer(s.grpcServ, s)
return nil
}