1
0
Fork 0
mirror of https://github.com/TwiN/gatus.git synced 2024-12-14 11:58:04 +00:00

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.
func GetServiceStatusesAsJSON() ([]byte, error) {
serviceStatuses := store.GetAll()
data, err := json.Marshal(serviceStatuses)
return data, err
return json.Marshal(serviceStatuses)
}
// GetUptimeByServiceGroupAndName returns the uptime of a service based on its group and name