Extracted server instance.
parent
121ff25839
commit
8bd3d7a27a
|
@ -2,22 +2,27 @@ package main
|
|||
|
||||
import (
|
||||
"encoding/json"
|
||||
"fmt"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
type StandardResponse struct {
|
||||
result int
|
||||
status string
|
||||
}
|
||||
|
||||
func main() {
|
||||
fmt.Println("Hello World!!!")
|
||||
f := func(writer http.ResponseWriter, req *http.Request) {
|
||||
hf := http.HandlerFunc(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)
|
||||
m := StandardResponse{
|
||||
result: 200,
|
||||
status: "OK",
|
||||
}
|
||||
|
||||
http.HandleFunc("/", f)
|
||||
_ = http.ListenAndServe(":8080", nil)
|
||||
p, _ := json.Marshal(m)
|
||||
writer.WriteHeader(200)
|
||||
_, _ = writer.Write(p)
|
||||
})
|
||||
|
||||
s := http.Server{Addr: ":8080", Handler: hf}
|
||||
_ = s.ListenAndServe()
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue