passwd-mgr/main.go

16 lines
228 B
Go
Raw Normal View History

2024-06-20 13:47:04 +00:00
package main
import (
"fmt"
"net/http"
"github.com/a-h/templ"
)
func main() {
component := hello("John")
http.Handle("/", templ.Handler(component))
fmt.Println("Listening on :3000")
http.ListenAndServe(":3000", nil)
}