forked from MTSR/mapserver
12 lines
224 B
Go
12 lines
224 B
Go
package web
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
)
|
|
|
|
func (api *Api) GetStats(resp http.ResponseWriter, req *http.Request) {
|
|
resp.Header().Add("content-type", "application/json")
|
|
json.NewEncoder(resp).Encode(LastStats)
|
|
}
|