samples/2022/01/golang_demo1/Program.go

29 lines
483 B
Go
Raw Normal View History

2022-01-14 19:57:09 +00:00
package main
import (
"encoding/json"
"net/http"
)
2022-01-14 20:36:01 +00:00
type StandardResponse struct {
Result int
Status string
2022-01-14 20:36:01 +00:00
}
2022-01-14 19:57:09 +00:00
func main() {
2022-01-14 20:36:01 +00:00
hf := http.HandlerFunc(func(writer http.ResponseWriter, req *http.Request) {
2022-01-14 19:57:09 +00:00
writer.Header().Set("Content-Type", "application/json")
2022-01-14 20:36:01 +00:00
m := StandardResponse{
Result: 200,
Status: "OK",
2022-01-14 19:57:09 +00:00
}
2022-01-14 20:36:01 +00:00
2022-01-14 19:57:09 +00:00
p, _ := json.Marshal(m)
2022-01-14 20:36:01 +00:00
writer.WriteHeader(200)
2022-01-14 19:57:09 +00:00
_, _ = writer.Write(p)
2022-01-14 20:36:01 +00:00
})
2022-01-14 19:57:09 +00:00
2022-01-14 20:36:01 +00:00
s := http.Server{Addr: ":8080", Handler: hf}
_ = s.ListenAndServe()
2022-01-14 19:57:09 +00:00
}