go-jamming/app/index/handler.go

17 lines
224 B
Go
Raw Normal View History

2021-04-07 10:06:16 +02:00
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 {
//}