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