basic echo server example

This commit is contained in:
Nickiel12 2023-12-19 20:51:52 -08:00
parent 3a2743cada
commit 00361743d5

View file

@ -3,11 +3,31 @@ package main
import (
"fmt"
"log"
"net/http"
//"github.com/jmoiron/sqlx"
)
func hello(w http.ResponseWriter, req *http.Request) {
fmt.Fprintf(w, "hello\n")
}
func headers(w http.ResponseWriter, req *http.Request) {
for name, headers := range req.Header {
for _, h := range headers {
fmt.Fprintf(w, "%v: %v\n", name, h)
}
}
}
func main() {
log.SetPrefix("RecountServer: ")
log.SetFlags(0)
fmt.Println("Hello World")
http.HandleFunc("/hello", hello)
http.HandleFunc("/headers", headers)
http.ListenAndServe(":8090", nil)
//fmt.Println("Hello World")
}