Add http-server exercise

This commit is contained in:
raul 2024-04-19 07:51:21 +02:00
parent 1a36774ee3
commit 1f23019846
2 changed files with 24 additions and 0 deletions

3
httpserver/go.mod Normal file
View File

@ -0,0 +1,3 @@
module httpserver
go 1.22.2

21
httpserver/main.go Normal file
View File

@ -0,0 +1,21 @@
package main
import (
"fmt"
"log"
"net/http"
)
func getRoot(w http.ResponseWriter, r *http.Request) {
fmt.Printf("Received connection\n")
fmt.Fprintln(w, "Hello!")
}
func main() {
http.HandleFunc("/", getRoot)
err := http.ListenAndServe(":8080", nil)
if err != nil {
log.Fatal(err)
}
}