2023-10-04 17:13:03 +02:00
|
|
|
package main
|
|
|
|
|
2023-10-04 17:29:22 +02:00
|
|
|
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))
|
|
|
|
}
|