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

server.go « info « service « praefect « internal - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0cc75a4171ecc0dd09734201871174a5e85b65f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package info

import (
	"gitlab.com/gitlab-org/gitaly/internal/praefect/config"
	"gitlab.com/gitlab-org/gitaly/proto/go/gitalypb"
)

// Server is a InfoService server
type Server struct{}

// NewServer creates a new instance of a grpc InfoServiceServer
func NewServer(conf config.Config) gitalypb.InfoServiceServer {
	s := &Server{}

	return s
}