Add disk detection for Linux, add new RPC service GetDiskInfoService(), remove dummy HelloService()

This commit is contained in:
Harshavardhana
2015-07-05 00:54:57 -07:00
parent 181727ab57
commit e66a84242a
9 changed files with 378 additions and 59 deletions

View File

@@ -117,9 +117,9 @@ func getAPIHandler(conf api.Config) (http.Handler, api.Minio) {
func getRPCHandler() http.Handler {
s := rpc.NewServer()
s.RegisterJSONCodec()
s.RegisterService(new(rpc.HelloService), "")
s.RegisterService(new(rpc.VersionService), "")
s.RegisterService(new(rpc.GetSysInfoService), "")
s.RegisterService(new(rpc.GetDiskInfoService), "")
// Add new services here
return registerRPC(router.NewRouter(), s)
}