Simplen ServeMux erstellt

This commit is contained in:
Jason Streifling 2023-10-04 17:29:22 +02:00
parent d6540d5764
commit 16240b8c01

15
main.go
View File

@ -1,3 +1,16 @@
package main
func main() {}
import (
"html/template"
"log"
"net/http"
)
func main() {
mux := http.NewServeMux()
mux.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
template.Must(template.ParseFiles("templates/index.html")).Execute(w, nil)
})
log.Fatalln(http.ListenAndServe(":8080", mux))
}