passwd-mgr/main.go
2024-06-20 16:47:04 +03:00

15 lines
228 B
Go

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)
}