this repo has no description
1package handler 2 3import "net/http" 4 5func GitReceivePack() http.HandlerFunc { 6 return func(w http.ResponseWriter, r *http.Request) { 7 panic("unimplemented") 8 } 9}