formatter

This commit is contained in:
Florian Schmitt 2024-10-03 14:36:31 +03:00
parent 256eaa63e9
commit ce8f918846

View file

@ -2,15 +2,13 @@ package main
import ( import (
"fmt" "fmt"
"net/http"
"github.com/a-h/templ" "github.com/a-h/templ"
"net/http"
) )
func main() { func main() {
http.Handle("/", templ.Handler(root())) http.Handle("/", templ.Handler(root()))
http.Handle("/noheader", templ.Handler(hello("12b et mrflos"))) http.Handle("/noheader", templ.Handler(hello("12b et mrflos")))
fmt.Println("Listening on :3000") fmt.Println("Listening on :3000")
http.ListenAndServe(":3000", nil) http.ListenAndServe(":3000", nil)
} }