func volumeListHandler(w http.ResponseWriter, r *http.Request) { log.Info("In Volume list API") volumes, e := volume.GetVolumesList() if e != nil { rest.SendHTTPError(w, http.StatusNotFound, e.Error()) } else { rest.SendHTTPResponse(w, http.StatusOK, volumes) } }
func volumeListHandler(w http.ResponseWriter, r *http.Request) { log.Info("In Volume list API") // Simple read operations, which just read information from the store, need // not use the transaction framework volumes, e := volume.GetVolumesList() if e != nil { rest.SendHTTPError(w, http.StatusNotFound, e.Error()) } else { rest.SendHTTPResponse(w, http.StatusOK, volumes) } }