go-jamming/app/index/handler.go

17 lines
224 B
Go

package index
import (
"net/http"
"fmt"
)
func HandleIndex(w http.ResponseWriter, r *http.Request) {
w.WriteHeader(http.StatusOK)
fmt.Printf("testje")
}
//func (s *server) handleIndex() http.HandlerFunc {
//}