handler.go 371 B

1234567891011121314151617181920
  1. package statistic
  2. import (
  3. "encoding/json"
  4. "net/http"
  5. "imuslab.com/Zoraxy/mod/utils"
  6. )
  7. /*
  8. Handler.go
  9. This script handles incoming request for loading the statistic of the day
  10. */
  11. func (c *Collector) HandleTodayStatLoad(w http.ResponseWriter, r *http.Request) {
  12. js, _ := json.Marshal(c.DailySummary)
  13. utils.SendJSONResponse(w, string(js))
  14. }