(mrc *cache.MultiRepoCache)
| 21 | } |
| 22 | |
| 23 | func NewGitFileHandler(mrc *cache.MultiRepoCache) http.Handler { |
| 24 | return &gitFileHandler{mrc: mrc} |
| 25 | } |
| 26 | |
| 27 | func (gfh *gitFileHandler) ServeHTTP(rw http.ResponseWriter, r *http.Request) { |
| 28 | var repo *cache.RepoCache |
no outgoing calls