Welcome to mirror list, hosted at ThFree Co, Russian Federation.

home.go « router - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 54d09d3c0271b2eb28fae08e8c98d67f971332e1 (plain)
1
2
3
4
5
6
7
8
9
package router

import (
	"net/http"
)

func Home(w http.ResponseWriter, r *http.Request) {
	w.Write([]byte("All routes lead to Gitaly\n"))
}