golang-exercises/httpserver/main.go

22 lines
301 B
Go
Raw Normal View History

2024-04-19 07:51:21 +02:00
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)
}
}