From 972c4e225ebd8277f2e43b18aeee918fbdd90f42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tomasz=20P=C3=B3=C5=82grabia?= Date: Fri, 14 Jan 2022 22:50:04 +0100 Subject: [PATCH] Adding basic routing... --- 2022/01/golang_demo1/Program.go | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/2022/01/golang_demo1/Program.go b/2022/01/golang_demo1/Program.go index 56ccae8..acef9b0 100644 --- a/2022/01/golang_demo1/Program.go +++ b/2022/01/golang_demo1/Program.go @@ -11,7 +11,13 @@ type StandardResponse struct { } func main() { + sm := http.NewServeMux() hf := http.HandlerFunc(func(writer http.ResponseWriter, req *http.Request) { + if req.URL.Path != "/" { + http.NotFound(writer, req) + return + } + writer.Header().Set("Content-Type", "application/json") m := StandardResponse{ Result: 200, @@ -23,6 +29,20 @@ func main() { _, _ = writer.Write(p) }) - s := http.Server{Addr: ":8080", Handler: hf} + hf2 := http.HandlerFunc(func(writer http.ResponseWriter, req *http.Request) { + writer.Header().Set("Content-Type", "application/json") + m := StandardResponse{ + Result: 200, + Status: "NOK", + } + + p, _ := json.Marshal(m) + writer.WriteHeader(200) + _, _ = writer.Write(p) + }) + + sm.Handle("/", hf) + sm.Handle("/info", hf2) + s := http.Server{Addr: ":8080", Handler: sm} _ = s.ListenAndServe() }