package main import ( "fmt" "net/http" ) func handleClicked(w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "Clicked") }