forked from MTSR/mapserver
17 lines
298 B
Go
17 lines
298 B
Go
package web
|
|
|
|
import (
|
|
"encoding/json"
|
|
"mapserver/app"
|
|
"net/http"
|
|
)
|
|
|
|
type ConfigHandler struct {
|
|
ctx *app.App
|
|
}
|
|
|
|
func (h *ConfigHandler) ServeHTTP(resp http.ResponseWriter, req *http.Request) {
|
|
resp.Header().Add("content-type", "application/json")
|
|
json.NewEncoder(resp).Encode(h.ctx.Config)
|
|
}
|