Initial version for go server.

master
Tomasz Półgrabia 2022-01-14 20:57:09 +01:00
parent 17a73b45e7
commit 121ff25839
2 changed files with 25 additions and 0 deletions

2
2022/01/golang_demo1/.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.idea
*.iml

View File

@ -0,0 +1,23 @@
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)
}