13 lines
237 B
Go
13 lines
237 B
Go
package main
|
|
|
|
import (
|
|
"net/http"
|
|
)
|
|
|
|
type JsonHandler func(http.ResponseWriter, *http.Request)
|
|
|
|
func (h JsonHandler) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
|
w.Header().Set("Content-Type", "application/json")
|
|
h(w, req)
|
|
}
|