diff --git a/2022/01/golang_demo1/Program.go b/2022/01/golang_demo1/Program.go index a6ea32b..fb9a0d6 100644 --- a/2022/01/golang_demo1/Program.go +++ b/2022/01/golang_demo1/Program.go @@ -2,22 +2,27 @@ package main import ( "encoding/json" - "fmt" "net/http" ) -func main() { - fmt.Println("Hello World!!!") - f := func(writer http.ResponseWriter, req *http.Request) { - writer.Header().Set("Content-Type", "application/json") - m := map[string]string{ - "result": "ok", - } - p, _ := json.Marshal(m) - writer.WriteHeader(201) - _, _ = writer.Write(p) - } - - http.HandleFunc("/", f) - _ = http.ListenAndServe(":8080", nil) +type StandardResponse struct { + result int + status string +} + +func main() { + hf := http.HandlerFunc(func(writer http.ResponseWriter, req *http.Request) { + writer.Header().Set("Content-Type", "application/json") + m := StandardResponse{ + result: 200, + status: "OK", + } + + p, _ := json.Marshal(m) + writer.WriteHeader(200) + _, _ = writer.Write(p) + }) + + s := http.Server{Addr: ":8080", Handler: hf} + _ = s.ListenAndServe() }