func()

in indexhandler.go [13:20]


func (h IndexHandler) ServeHTTP(w http.ResponseWriter, request *http.Request) {
	response := helpers.GenericErrorResponse{
		Status: "ok",
		Detail: "online",
	}

	helpers.WriteJsonContent(response, w, 200)
}