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