evilthings/clicked.go
Samantha Becker caabd6d740 App stuff
2023-09-18 11:15:19 +02:00

10 lines
134 B
Go

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