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:
authorPablo Carranza <pcarranza@gmail.com>2016-11-28 10:40:52 +0300
committerAhmad Sherif <me@ahmadsherif.com>2016-11-29 21:31:34 +0300
commit4d4a97db373eda4a2662f30e940f6a205007e126 (patch)
tree639939e9133d2439c35b66fde0c5ee6feff7eaf8
parentfb331b2d7b70cdea1f91bcae2ae9f854b34bc0ec (diff)
Changed server API to use the new one
-rw-r--r--cmd/server/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/server/main.go b/cmd/server/main.go
index f8687c09b..e326fa65c 100644
--- a/cmd/server/main.go
+++ b/cmd/server/main.go
@@ -5,5 +5,5 @@ import (
)
func main() {
- server.Listen("tcp", "0.0.0.0:6666")
+ server.NewService().Serve("0.0.0.0:6666")
}