inline json.Marshal return

This commit is contained in:
Chris Heppell 2020-12-31 22:00:38 +00:00
parent fc4858b1a8
commit fb5477f50b

View File

@ -24,8 +24,7 @@ var (
// GetServiceStatusesAsJSON returns a list of core.ServiceStatus for each services encoded using json.Marshal. // GetServiceStatusesAsJSON returns a list of core.ServiceStatus for each services encoded using json.Marshal.
func GetServiceStatusesAsJSON() ([]byte, error) { func GetServiceStatusesAsJSON() ([]byte, error) {
serviceStatuses := store.GetAll() serviceStatuses := store.GetAll()
data, err := json.Marshal(serviceStatuses) return json.Marshal(serviceStatuses)
return data, err
} }
// GetUptimeByServiceGroupAndName returns the uptime of a service based on its group and name // GetUptimeByServiceGroupAndName returns the uptime of a service based on its group and name