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

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/router/home.go')
-rw-r--r--internal/router/home.go9
1 files changed, 9 insertions, 0 deletions
diff --git a/internal/router/home.go b/internal/router/home.go
new file mode 100644
index 000000000..54d09d3c0
--- /dev/null
+++ b/internal/router/home.go
@@ -0,0 +1,9 @@
+package router
+
+import (
+ "net/http"
+)
+
+func Home(w http.ResponseWriter, r *http.Request) {
+ w.Write([]byte("All routes lead to Gitaly\n"))
+}