10 lines
134 B
Go
10 lines
134 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
func handleClicked(w http.ResponseWriter, r *http.Request) {
|
|
fmt.Fprint(w, "Clicked")
|
|
}
|