package handlers import ( "net/http" ) func (h *Handler) SampleIndex(w http.ResponseWriter, r *http.Request) { w.Write([]byte("Hello from Index!")) }